Grouping/Branches Flashcards

(6 cards)

1
Q

git branch -d [branch name]

A

deleted the specified branch

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

git branch

A

list all branches in current git repo

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

git branch [branch name]

A

creates a branch

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

git branch -d [branch-name]

A

Deletes the specified branch

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

git merge {branch}

A

Combines the specified branch’s history into the current branch

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

git checkout {branch-name}

A

Switches to the specified branch and updates the working directory

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