this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add more JJ aliases

+10 -8
+10 -8
modules/jj.nix
··· 7 7 user.name = "Łukasz Niemier"; 8 8 9 9 aliases = { 10 + record = ["commit"]; 11 + ci = ["commit"]; 12 + rci = ["squash"]; 10 13 lg = ["log"]; 14 + tug = ["bookmark" "move" "--from" "closest_bookmark(@-)" "--to" "@-"]; 15 + pull = ["git" "fetch"]; 16 + push = ["git" "push" "--allow-new"]; 17 + }; 18 + 19 + revset-aliases = { 20 + "closest_bookmark(to)" = "heads(::to & bookmarks())"; 11 21 }; 12 22 13 23 git.write-change-id-header = true; ··· 35 45 diff.git(), 36 46 ) 37 47 ''; 38 - 39 - "--scope" = [ 40 - { 41 - "--when".repositories = ["~/Workspace/supabase/"]; 42 - 43 - user.email = "lukasz@supabase.io"; 44 - } 45 - ]; 46 48 }; 47 49 }; 48 50