MarcoMorawec / SiB-Dev-Team

All SiB Dev Team Mojo
4 stars 0 forks source link

GitHub Branching Commands #14

Open MarcoMorawec opened 11 years ago

MarcoMorawec commented 11 years ago

Create a new branch(and switch to it): git checkout -b lab2

--> make all your changes in lab2 and commit it to that branch

Merging set-up

--> switch to the branch you want to merge into (this is most likely going to be youname/master)

git merge lab2

--> should all be done now