small pixel drawing of a pufferfish dotfiles

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
commit

cd3998ef7e4cb96dbaef795b585c4c00fb6a1aa3

parent

c48f15bf2cbc9c553206da0612150c7071f83ee1

2 files changed, 7 insertions(+), 2 deletions(-)

jump to
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"]