repos / dotfiles

my dotfiles

commit
9080164
parent
1e6951b
author
Eric Bower
date
2025-07-08 22:39:01 -0400 EDT
refactor: use git aliases instead of fish ones
2 files changed,  +13, -6
M dot/gitconfig
+7, -0
 1@@ -18,3 +18,10 @@
 2   renames = true
 3 [format]
 4   useAutoBase = whenAble
 5+[alias]
 6+  gu = remote update --prune
 7+  ga = add -A
 8+  gm = commit -S
 9+  gs = commit -S --amend --no-edit
10+  gl = --no-pager log --oneline -n 15
11+  gt = log --graph --oneline --all
M dot_config/fish/config.fish
+6, -6
 1@@ -25,12 +25,12 @@ set -xg XDG_CONFIG_HOME ~/.config
 2 set -xg VDIRSYNCER_CONFIG ~/.config/vdirsyncer/config
 3 set -xg MDIR ~/mail
 4 
 5-abbr -a gu git remote update --prune
 6-abbr -a ga git add -A
 7-abbr -a gm git commit -S
 8-abbr -a gs git commit -S --amend --no-edit
 9-abbr -a gl git --no-pager log --oneline -n 15
10-abbr -a gt git log --graph --oneline --all
11+# abbr -a gu git remote update --prune
12+# abbr -a ga git add -A
13+# abbr -a gm git commit -S
14+# abbr -a gs git commit -S --amend --no-edit
15+# abbr -a gl git --no-pager log --oneline -n 15
16+# abbr -a gt git log --graph --oneline --all
17 abbr -a pushall "git remote | xargs -I R git push R"
18 abbr -a tmux tmux -u
19 abbr -a scratch nvim ~/scratch.md