true up jj & git using aliases that are hardcoded in my brain
Jes Olson j3s@c3f.net
Thu, 17 Aug 2023 13:15:17 -0500
2 files changed,
7 insertions(+),
2 deletions(-)
M
.config/git/config
→
.config/git/config
@@ -2,7 +2,7 @@ [advice]
addIgnoredFile = false detachedhead = false [alias] - st = status + s = status d = diff p = pull --prune --rebase ds = diff --staged@@ -13,7 +13,7 @@ co = checkout
br = branch amend = commit --amend -m aa = add -A . - ci = commit + cm = commit -m lg = log --color --graph --pretty=format:'%Cgreen%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit lgs = log --graph --pretty=format:'%Cgreen%h%Creset - %s %C(yellow)%d' --abbrev-commit empty = commit --allow-empty -m 'Trigger Build'
M
.config/jj/config.toml
→
.config/jj/config.toml
@@ -8,3 +8,8 @@ 'format_timestamp(timestamp)' = 'timestamp.ago()'
[ui] default-command = 'log' + +[aliases] +s = ["status"] +d = ["diff"] +cm = ["commit", "-m"]