Git Flashcards
1
Q
make a new branch “newbranch” and check it out
A
git checkout -b newbranch
2
Q
merge the branch bugFix into master
A
git merge bugFix
3
Q
move work from bugFix directly onto the work from master
A
git rebase master