427 B
427 B
Git
- apt install git
- create repo in gogs
- git clone repo
- touch README.md
- git add -A
- git commit -m "first commit"
- git push origin master
To collaborate on an existing repo
- Be added as a collaborator
- git clone <repo> (I'll show you where to get the addy)
- git checkout -b <your name>
- make changes
- add commit
- git push origin <yourname>