justfile: Add push recipe to push branch to all remotes

This commit is contained in:
ulic-youthlic 2025-07-11 04:46:19 +08:00
parent 6ba58d5882
commit 34b35719e8
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721

View file

@ -46,6 +46,10 @@ sign:
patch revision="HEAD":
git push rad {{ revision }}:refs/patches
push:
jj git push -b dev --remote all
jj git fetch --all-remotes
rebase revision="dev":
jj rebase -b 'all:heads(all()) & ~signed() &~@' -d {{ revision }}