jj-git-remote

manages Git remotes for Jujutsu repositories

TLDR

Add remote
$ jj git remote add [name] [url]
List remotes
$ jj git remote list
Remove remote
$ jj git remote remove [name]
Rename remote
$ jj git remote rename [old] [new]

SYNOPSIS

jj git remote subcommand [options]

DESCRIPTION

jj git remote manages Git remotes for Jujutsu repositories. It configures where to fetch and push changes.The commands mirror Git remote management. Changes are stored in Git format for compatibility.

PARAMETERS

add NAME URL

Add new remote.
list
List configured remotes.
remove NAME
Remove remote.
rename OLD NEW
Rename remote.
--help
Display help information.

INSTALL

sudo pacman -S jujutsu
sudo apk add jujutsu
sudo zypper install jujutsu
brew install jujutsu
nix profile install nixpkgs#jujutsu

CAVEATS

Subcommand of jj. Uses Git remote format. Standard Git hosting works.

HISTORY

jj git remote is part of Jujutsu, providing remote management compatible with Git infrastructure.

SEE ALSO

jj(1), jj-git(1), git-remote(1)