mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-21 16:55:26 +02:00
24 lines
446 B
Markdown
24 lines
446 B
Markdown
# jj git remote
|
|
|
|
> Manage Git remotes.
|
|
> More information: <https://jj-vcs.github.io/jj/latest/cli-reference/#jj-git-remote>.
|
|
|
|
- List all Git remotes:
|
|
|
|
`jj git remote list`
|
|
|
|
- Add a Git remote:
|
|
|
|
`jj git remote add {{remote}} {{url}}`
|
|
|
|
- Change the URL of a Git remote:
|
|
|
|
`jj git remote set-url {{remote}} {{url}}`
|
|
|
|
- Remove a Git remote:
|
|
|
|
`jj git remote remove {{remote}}`
|
|
|
|
- Rename a Git remote:
|
|
|
|
`jj git remote rename {{old_name}} {{new_name}}`
|