From 7200e95a805e77549184a8e8539fa77f9fa41e3d Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 18 Jul 2023 09:07:59 -0400 Subject: [PATCH] fish: Make branch information more verbose Also adds a gbr abbreviation to only show remote branches. --- modules/fish.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/fish.nix b/modules/fish.nix index aef41bb2..094259f8 100644 --- a/modules/fish.nix +++ b/modules/fish.nix @@ -37,7 +37,8 @@ ga = "git add"; gaa = "git add --all"; gap = "git add --patch"; - gb = "git branch"; + gb = "git branch --verbose"; + gbr = "git branch --verbose --remotes"; gbd = "git branch --delete"; gc = "git commit -m"; gca = "git commit --amend";