30 Study guide Git Remotes
| Command | Explanation |
|---|---|
| git remote | allows you to manage the set of repositories or “remotes” whose branches you track. |
| git remote -v | is similar to $ git remote, but adding the -v shows more information such as the remote URL. |
| [git remote show | shows some information about a single remote repo. |
| git remote update | fetches updates for remotes or remote groups. |
| git fetch | can download objects and refs from a single repo, a single URL, or from several repositories at once. |
| git branch -r | lists remote branches and can be combined with other branch arguments to manage remote branches. |
This post is licensed under CC BY 4.0 by the author.