From a889cc675e2cd82eff24af35c51add75242a5c79 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 8 May 2025 01:26:49 +0300 Subject: [PATCH] feat: jj clone & jj cl alias --- modules/common/jujutsu.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/common/jujutsu.nix b/modules/common/jujutsu.nix index f844591..791d76c 100644 --- a/modules/common/jujutsu.nix +++ b/modules/common/jujutsu.nix @@ -28,6 +28,9 @@ in { aliases.pull = [ "git" "fetch" ]; aliases.push = [ "git" "push" ]; + aliases.clone = [ "git" "clone" "--colocate" ]; + aliases.cl = [ "git" "clone" "--colocate" ]; + aliases.init = [ "git" "init" "--colocate" ]; aliases.i = [ "git" "init" "--colocate" ];