Post

30 Study guide Git Remotes

CommandExplanation
git remoteallows you to manage the set of repositories or “remotes” whose branches you track.
git remote -vis similar to $ git remote, but adding the -v shows more information such as the remote URL.
[git remote show ](https://git-scm.com/docs/git-remote#Documentation/git-remote.txt-emshowem)shows some information about a single remote repo.
git remote updatefetches updates for remotes or remote groups.
git fetchcan download objects and refs from a single repo, a single URL, or from several repositories at once.
git branch -rlists 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.