Course notes in IC class
- git clone + SSH
- cd + "file name"
- git status
- git add . # track all files
- git add + " file name" # track one specific file
- git commit -m "message" -m "some description"
- git push / git push origin master
- cd ../"file name"
- git init # to git
- git remote add origin +"ssh"
- git remote -v
- git branch
- git branch -b +"branch name"
branch change
watch