Lesson 4 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)
2
Q
git clone remote_location clone_name
A
Creates a local copy of a remote
3
Q
git remote -v
A
Lists a Git project’s remotes
4
Q
git fetch
A
Fetches work from the remote into the local copy
5
Q
git merge origin/master
A
Merges the master branch of the origin into the local copy
6
Q
git push origin branch_name
A
Pushes a local branch to the origin remote