From abbd28a634f8a50d2e370d8a5607c1115be050f3 Mon Sep 17 00:00:00 2001 From: Colin Date: Sun, 10 Dec 2023 17:01:58 +0000 Subject: [PATCH] git: add an "amend" alias --- hosts/common/programs/git.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/common/programs/git.nix b/hosts/common/programs/git.nix index ae215222..fccb4603 100644 --- a/hosts/common/programs/git.nix +++ b/hosts/common/programs/git.nix @@ -13,6 +13,7 @@ in user.name = "Colin"; user.email = "colin@uninsane.org"; + alias.amend = "commit --amend --no-edit"; alias.br = "branch"; alias.co = "checkout"; alias.cp = "cherry-pick";