Remote Repositories - Commands Flashcards
1
Q
git clone
A
- create a new repository that is a clone of a remote repository
2
Q
git remote
A
- list all remote repositories associated with the current repository
3
Q
git remote add
A
- add a new remote repository to the current repository
4
Q
git push
A
- push your latest changes to a remote repository
5
Q
git pull
A
- pull the latest changes from a remote repository to your repository