Create a copy of a remote Git repository.
git clone <remote-path>
List remote repositories.
git remote
Add a remote repository.
git remote add <remote-name> <remote-path>
Download remote branch information, but do not merge anything.
git fetch <remote-name>
Merge a remote branch into the checked-out branch.
git merge <remote-name>/<branch-name>
List remote branches.
git branch -r
Push a local branch to another repository.
git push <remote-name> <branch-name>
Push a tag to another repository.
git push <remote-name> <tag-name>
Remotes