From 5a5a5c7606c03f11d80ddcb51a7d913f2a977d92 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Mon, 27 May 2024 15:20:56 +0200 Subject: [PATCH] Add `--no-edit` to `gam` abbrev --- users/jalr/modules/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/jalr/modules/git.nix b/users/jalr/modules/git.nix index 2ff8657..88bf208 100644 --- a/users/jalr/modules/git.nix +++ b/users/jalr/modules/git.nix @@ -23,7 +23,7 @@ fish = { shellAbbrs = { ga = "git add"; - gam = "git commit --amend"; + gam = "git commit --amend --no-edit"; gap = "git add --patch"; gb = "git branch"; gbd = "git branch --delete";