more jj aliases

Signed-off-by: jolheiser <git@jolheiser.com>
main
jolheiser 2025-05-01 13:33:53 -05:00
parent ff1afee641
commit 6ea5ae4b4e
No known key found for this signature in database
1 changed files with 17 additions and 0 deletions

View File

@ -25,6 +25,10 @@
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAUxLwkJOlalAHTdkbh+m49XTZGKDqWz1o/o8OLmtQdX"; key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAUxLwkJOlalAHTdkbh+m49XTZGKDqWz1o/o8OLmtQdX";
}; };
revsets.log = "ancestors(present(@), 5) | ancestors(immutable_heads().., 2) | present(trunk())"; revsets.log = "ancestors(present(@), 5) | ancestors(immutable_heads().., 2) | present(trunk())";
revset-aliases = {
"closest_bookmark(to)" = "heads(::to & bookmarks())";
"immutable_heads()" = "builtin_immutable_heads() & remote_bookmarks()";
};
aliases = { aliases = {
push = [ push = [
"util" "util"
@ -41,6 +45,19 @@
"fetch" "fetch"
"origin" "origin"
]; ];
i = [
"git"
"init"
"--colocate"
];
tug = [
"bookmark"
"move"
"--from"
"closest_bookmark(@-)"
"--to"
"@-"
];
}; };
}; };
}; };