From 8cd9134e10386055eec9e511cdf451a1e6418fde Mon Sep 17 00:00:00 2001 From: gliech Date: Wed, 4 Dec 2024 20:23:32 +0100 Subject: [PATCH] fix(git): reuse commit message in amend alias --- .config/git/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/git/config b/.config/git/config index 53fce59..256bed3 100644 --- a/.config/git/config +++ b/.config/git/config @@ -23,6 +23,6 @@ graph = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all chronograph = graph --date-order ff = merge --ff-only - amend = commit --amend + amend = commit --amend --reuse-message=HEAD [init] defaultBranch = main