Lesson 3 Flashcards
1
Q
Git branching
A
Allows users to try different versions of a project
2
Q
git branch
A
Lists all of the branches in a project (* marks the current branch)
3
Q
git branch branch_name
A
Creates a new branch
4
Q
git checkout branch_name
A
Switches from one branch to another
5
Q
git merge branch_name
A
Join file changes from one branch to another
6
Q
git branch -d branch_name
A
Deletes the branch