This is taken from the lecture
-
git add hello.txt
-
git commit -m "add hello.txt"
-
git status
-
git log --all --graph --decorate --oneline
-
git branch dog
-
git checkout dog
-
git branch cat
-
git branch -vv
-
git checkout cat
-
git checkout master
-
git merge cat -m "merge cat functionality"
-
git merge dog -m "merge dog functionality"
-
git diff SHA1 animal.py
-
git clone --shallow
-
git add -p
-
git blame
-
git stash
-
git bisect