my dotz
2
fork

Configure Feed

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

true up jj & git using aliases that are hardcoded in my brain

+7 -2
+2 -2
.config/git/config
··· 2 2 addIgnoredFile = false 3 3 detachedhead = false 4 4 [alias] 5 - st = status 5 + s = status 6 6 d = diff 7 7 p = pull --prune --rebase 8 8 ds = diff --staged ··· 13 13 br = branch 14 14 amend = commit --amend -m 15 15 aa = add -A . 16 - ci = commit 16 + cm = commit -m 17 17 lg = log --color --graph --pretty=format:'%Cgreen%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit 18 18 lgs = log --graph --pretty=format:'%Cgreen%h%Creset - %s %C(yellow)%d' --abbrev-commit 19 19 empty = commit --allow-empty -m 'Trigger Build'
+5
.config/jj/config.toml
··· 8 8 9 9 [ui] 10 10 default-command = 'log' 11 + 12 + [aliases] 13 + s = ["status"] 14 + d = ["diff"] 15 + cm = ["commit", "-m"]