From 133353fde984e938ae5c3ea43d5f6471263884bb Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Wed, 2 Jul 2025 13:30:41 +0200 Subject: [PATCH] Modules/Fish: Update git abbrs --- home/modules/fish/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/home/modules/fish/default.nix b/home/modules/fish/default.nix index 653e359d..58306a6c 100644 --- a/home/modules/fish/default.nix +++ b/home/modules/fish/default.nix @@ -169,9 +169,12 @@ in { (abbrify pkgs.git { gs = "git status"; - gcm = "git commit -m"; + gd = "git diff --output-indicator-new=' ' --output-indicator-old=' '"; + gl = "git log --all --graph --pretty=format:'%C(magenta)%h %C(white) %an %ar%C(auto) %D%n%s%n'"; ga = "git add"; - glg = "git log --graph --decorate --oneline"; + gap = "git add --patch"; + gc = "git commit --verbose"; + gcm = "git commit -m"; gcl = "git clone"; })