๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

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

add suport for private and wip commits

+6 -9
+6 -9
.config/jj/config.toml
··· 25 25 graph.style = "curved" 26 26 27 27 [revset-aliases] 28 + "wip()" = "description(glob:'wip:*')" 29 + "private()" = "description(glob:'private:*')" 30 + 28 31 "stack()" = "ancestors(reachable(@, mutable()), 2)" 29 32 "stack(x)" = "ancestors(reachable(x, mutable()), 2)" 30 33 "stack(x, n)" = "ancestors(reachable(x, mutable()), n)" 31 34 32 35 [aliases] 33 - d = ["diff"] 34 - l = ["log"] 35 - ll = ["log", "-r", "::@"] 36 - fetch = ["git", "fetch"] 37 - clone = ["git", "clone"] 38 - init = ["git", "init", "--colocate"] 39 - mark = ["bookmark", "set", "-r", "@"] 40 - track = ["bookmark", "track"] 41 - push = ["git", "push"] 36 + ds = ["diff", "--stat"] 37 + l = ["log", "-T", "builtin_log_compact"] 38 + ll = ["log", "-T", "builtin_log_detailed"] 42 39 tug = ["bookmark", "move", "--from", "heads(::@- & bookmarks())", "--to", "@-"]