Git Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

make a new branch “newbranch” and check it out

A

git checkout -b newbranch

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

merge the branch bugFix into master

A

git merge bugFix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

move work from bugFix directly onto the work from master

A

git rebase master

How well did you know this?
1
Not at all
2
3
4
5
Perfectly