Skip to content

3. Git

Git exercises

  1. Create new branch git checkout -b <branch-name>
  2. Commit to that branch git commit -am <message>
  3. Do another commit
  4. Change the first commit git rebase -i origin/master
  5. Push to remote repository git push
  6. Merge the repository

Now that you master basic GIT commands do every workshop section in it's own branch.