From ce2d82c32375cbb08f2475604cd8a1d9fd3bd780 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Sun, 29 Jan 2023 00:03:59 +0700 Subject: [PATCH] user/zsh: add git fixup edit abbr --- modules/user/zsh.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/user/zsh.nix b/modules/user/zsh.nix index 3f9142f..f25ba72 100644 --- a/modules/user/zsh.nix +++ b/modules/user/zsh.nix @@ -49,7 +49,8 @@ let gco = "git checkout"; gd = "git diff"; gds = "git diff --staged"; - gf = "git commit --amend --no-edit --reset-author"; + gf = "git commit --amend --reset-author --no-edit"; + gfe = "git commit --amend --reset-author"; gl = "git log"; gr = "git rebase -i"; };