From 4ddaded39c315f7e77aeedc95968eb000e98f372 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Fri, 18 Aug 2023 11:11:29 -0500 Subject: [PATCH] add git graph abbr --- home/features/cli/fish.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/features/cli/fish.nix b/home/features/cli/fish.nix index b0a1104..cb4c52d 100644 --- a/home/features/cli/fish.nix +++ b/home/features/cli/fish.nix @@ -12,6 +12,7 @@ in ccat = "egrep -v '^\s*(#|$)'"; ga = "git add"; gc = "git commit"; # interactive commit + gg = "git graph"; gcm = "git commit -m"; # quick commit gp = "git push"; gs = "git status";