Grouping/Branches Flashcards
(6 cards)
1
Q
git branch -d [branch name]
A
deleted the specified branch
2
Q
git branch
A
list all branches in current git repo
3
Q
git branch [branch name]
A
creates a branch
4
Q
git branch -d [branch-name]
A
Deletes the specified branch
5
Q
git merge {branch}
A
Combines the specified branch’s history into the current branch
6
Q
git checkout {branch-name}
A
Switches to the specified branch and updates the working directory