Support --remote in new_proposal script with jj (#6903)

This commit is contained in:
Dana Jansens
2026-03-12 21:57:56 +00:00
committed by GitHub
parent 610094ccfd
commit 5d1973ab93
+10
View File
@@ -194,6 +194,16 @@ def main() -> None:
assert jj_bin # For mypy.
_run([jj_bin, "new", parsed_args.branch_start_point])
_run([jj_bin, "bookmark", "create", branch])
_run(
[
jj_bin,
"bookmark",
"track",
branch,
"--remote",
parsed_args.remote,
]
)
# Copy template.md to a temp file.
template_path = "proposals/scripts/template.md"