Update cheatsheets

This commit is contained in:
ivuorinen
2025-07-10 00:21:00 +00:00
parent b467fadfef
commit a75032eb46
30 changed files with 577 additions and 25 deletions

29
tldr/jj-git-remote Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`