Lesson 4 Flashcards

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

Remote

A

Git repository that lives outside your Git project folder (on the web, on a shared network, on a separate folder)

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

git clone remote_location clone_name

A

Creates a local copy of a remote

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

git remote -v

A

Lists a Git project’s remotes

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

git fetch

A

Fetches work from the remote into the local copy

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

git merge origin/master

A

Merges the master branch of the origin into the local copy

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

git push origin branch_name

A

Pushes a local branch to the origin remote

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