2015-10-22 08:31:52 +01:00
|
|
|
# git remote
|
2015-03-30 12:45:48 +01:00
|
|
|
|
2016-07-14 08:18:38 +01:00
|
|
|
> Manage set of tracked repositories ("remotes").
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://git-scm.com/docs/git-remote>.
|
2015-03-30 12:45:48 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Show a list of existing remotes, their names and URL:
|
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}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Add a remote:
|
2015-03-30 12:45:48 +01:00
|
|
|
|
|
|
|
`git remote add {{remote_name}} {{remote_url}}`
|
|
|
|
|
2019-05-20 13:52:55 +01:00
|
|
|
- Change the URL of a remote (use `--add` to keep the existing URL):
|
2015-03-30 12:45:48 +01:00
|
|
|
|
2015-03-30 13:20:14 +01:00
|
|
|
`git remote set-url {{remote_name}} {{new_url}}`
|
2015-03-30 12:45:48 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Remove a remote:
|
2015-03-30 12:45:48 +01:00
|
|
|
|
|
|
|
`git remote remove {{remote_name}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Rename a remote:
|
2015-03-30 12:45:48 +01:00
|
|
|
|
|
|
|
`git remote rename {{old_name}} {{new_name}}`
|