Run ./setup.sh && cd exercise
You again live in your own branch, this time we will be doing a bit of juggling with branches, to show how lightweight branches are in git.
- git checkout uppercase
- git rebase master
- git lg
- git checkout master
- git merge uppercase
git checkout <branch-name>
git rebase <branch-name>
git log --oneline --decorate --graph --all
git merge <branchA> <branchB>