From 5cc5329a7445f9d6c82fcda726b4fb72cd4126ee Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 14 May 2025 22:17:47 +0300 Subject: [PATCH] jujutsu: fix closest_pushable alias --- modules/common/jujutsu.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/common/jujutsu.nix b/modules/common/jujutsu.nix index a631d68..7744014 100644 --- a/modules/common/jujutsu.nix +++ b/modules/common/jujutsu.nix @@ -52,7 +52,7 @@ in { aliases.tug = [ "bookmark" "move" "--from" "closest(@-)" "--to" "closest_pushable(@)" ]; revset-aliases."closest(to)" = "heads(::to & bookmarks())"; - revset-aliases."closest_pushable(to)" = "heads(::to & mutable() & ~description(exact:\"\") & (~empty() | merges()))"; + revset-aliases."closest_pushable(to)" = "heads(::to & ~description(exact:\"\") & (~empty() | merges()))"; revsets.log = "present(@) | present(trunk()) | ancestors(remote_bookmarks().., 2) | reachable(@, all())";