Computer Science > Git > Flashcards
make a new branch “newbranch” and check it out
git checkout -b newbranch
merge the branch bugFix into master
git merge bugFix
move work from bugFix directly onto the work from master
git rebase master