From 2032012f4c8f01578de467c8e86d4092f7cb48bd Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Fri, 27 Aug 2021 21:54:50 +0700 Subject: [PATCH] zsh: add --reset-author to `gf` abbr --- modules/user/zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/user/zsh.nix b/modules/user/zsh.nix index 088844e..2f693cb 100644 --- a/modules/user/zsh.nix +++ b/modules/user/zsh.nix @@ -49,7 +49,7 @@ let gco = "git checkout"; gd = "git diff"; gds = "git diff --staged"; - gf = "git commit --amend --no-edit"; + gf = "git commit --amend --no-edit --reset-author"; gl = "git log"; gr = "git rebase -i"; };