Lesson 3 Flashcards

1
Q

Git branching

A

Allows users to try different versions of a project

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

git branch

A

Lists all of the branches in a project (* marks the current branch)

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

git branch branch_name

A

Creates a new branch

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

git checkout branch_name

A

Switches from one branch to another

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

git merge branch_name

A

Join file changes from one branch to another

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

git branch -d branch_name

A

Deletes the branch

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