From c46079d7cd120c0e56bc630aebfa333122f0844d Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 18 Jul 2023 09:06:41 -0400 Subject: [PATCH] fish: Remove --all from git log abbreviation Now it's possible to get the log of specific branches, particularly useful for cherry picking. --- modules/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fish.nix b/modules/fish.nix index 2e6a17c..aef41bb 100644 --- a/modules/fish.nix +++ b/modules/fish.nix @@ -48,7 +48,7 @@ gd = "git diff"; gds = "git diff --staged"; gi = "git init"; - gl = "git log --oneline --decorate --all --graph -n 10"; + gl = "git log --oneline --decorate --graph -n 10"; gm = "git merge"; gp = "git push"; gr = "git reset HEAD~";