From c63552932c32a024f6e74958508551399b26ae16 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Tue, 8 Aug 2023 09:35:27 -0500 Subject: [PATCH] 'gc' and 'gcm' fish abbrs --- home/features/cli/fish.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/features/cli/fish.nix b/home/features/cli/fish.nix index cf17647..b0a1104 100644 --- a/home/features/cli/fish.nix +++ b/home/features/cli/fish.nix @@ -11,7 +11,8 @@ in shellAbbrs = rec { ccat = "egrep -v '^\s*(#|$)'"; ga = "git add"; - gc = "git commit -m"; + gc = "git commit"; # interactive commit + gcm = "git commit -m"; # quick commit gp = "git push"; gs = "git status"; jqless = "jq -C | less -r";