Common Computer Science References
At the end of this lesson, you will be able to:
create, clone and update a repo
GitHub, git and Gitea
to clone a repo using git
git clone http://gitea.local/mr.coxall/TEJ4M-Intro-03.git
null
connect to Pi
create a repo (TEJ4M-Intro-03) in Gitea, clone it down onto the Pi, in a appropriate directory!
code in the "Hello, World!" program in Python (ensure it works!) and then push it back to Gitea
use "nvim" as your text editor
see here for help: https://sites.google.com/ocsb.ca/teh-cs-resources/editors/vim-neovim?authuser=0
there are tons of info online about Vim motions, Vim and NeoVim
ensure you have a README.md, a .gitignore (for python) and you style check it with Black!
can you add a Gitea Action to add in the GitHub Super Linter and turn on only Black?
commit your code back to Gitea
you will need to "set" your git profile info on the Pi
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
get "Hello, World!" working in a second language
just pick one!