jj-git-push
pushes changes to Git remotes
TLDR
Push current bookmark
$ jj git push
Push specific bookmark$ jj git push --bookmark [name]
Push all bookmarks$ jj git push --all
Push to specific remote$ jj git push --remote [origin]
Dry run$ jj git push --dry-run
SYNOPSIS
jj git push [options]
DESCRIPTION
jj git push pushes changes to Git remotes. It converts jj bookmarks to Git branches for pushing.
The command handles the translation between jj's model and Git refs. It supports selective or bulk pushing.
PARAMETERS
--bookmark NAME
Bookmark to push.--all
Push all bookmarks.--remote NAME
Target remote.--dry-run
Show what would be pushed.--help
Display help information.
CAVEATS
Subcommand of jj. Requires bookmark on changes. Remote must exist.
HISTORY
jj git push is part of Jujutsu, enabling collaboration through Git hosting services.
