CompScie MC Gruppe
- in order to create a new branch: git checkout -b branch_name
- to change to a branch: git checkout branch_name
- when in branch: git pull origin branch_name
- to remove a branch: git branch -d (delete) branch_name
- to view all branches: git branch -a