jj-git-fetch
fetches changes from Git remotes into a Jujutsu repository
TLDR
Fetch from default remote
$ jj git fetch
Fetch from specific remote$ jj git fetch --remote [origin]
Fetch all remotes$ jj git fetch --all-remotes
Fetch specific branch$ jj git fetch --branch [main]
SYNOPSIS
jj git fetch [options]
DESCRIPTION
jj git fetch fetches changes from Git remotes into a Jujutsu repository. Updates remote-tracking branches. Works with the Git backend to sync with remote repositories.
PARAMETERS
--remote name
Remote to fetch from.--all-remotes
Fetch from all remotes.--branch name
Fetch specific branch.
SEE ALSO
jj(1), jj-git-push(1)
