tldr/pages/common/git-remote.md

33 lines
640 B
Markdown
Raw Normal View History

2015-10-22 08:31:52 +01:00
# git remote
2015-03-30 12:45:48 +01:00
> Manage set of tracked repositories ("remotes").
> More information: <https://git-scm.com/docs/git-remote>.
2015-03-30 12:45:48 +01:00
- List existing remotes with their names and URLs:
2015-03-30 12:45:48 +01:00
`git remote -v`
2020-04-15 17:52:22 +01:00
- Show information about a remote:
`git remote show {{remote_name}}`
- Add a remote:
2015-03-30 12:45:48 +01:00
`git remote add {{remote_name}} {{remote_url}}`
- Change the URL of a remote (use `--add` to keep the existing URL):
2015-03-30 12:45:48 +01:00
`git remote set-url {{remote_name}} {{new_url}}`
2015-03-30 12:45:48 +01:00
- Show the URL of a remote:
`git remote get-url {{remote_name}}`
- Remove a remote:
2015-03-30 12:45:48 +01:00
`git remote remove {{remote_name}}`
- Rename a remote:
2015-03-30 12:45:48 +01:00
`git remote rename {{old_name}} {{new_name}}`