git remote
Manage set of tracked repositories ("remotes").
- Show a list of existing remotes, their names and URL:
git remote -v
- Show information about a remote:
git remote show {remote_name}
git remote add {remote_name} {remote_url}
- Change the URL of a remote (use `--add` to keep the existing URL):
git remote set-url {remote_name} {new_url}
git remote remove {remote_name}
git remote rename {old_name} {new_name}
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).