3. Git
Git exercises
- Create new branch
git checkout -b <branch-name> - Commit to that branch
git commit -am <message> - Do another commit
- Change the first commit
git rebase -i origin/master - Push to remote repository
git push - Merge the repository
Now that you master basic GIT commands do every workshop section in it's own branch.