From c52099f8c21ba935cec76db0a3ad9bce686079af Mon Sep 17 00:00:00 2001 From: thek4n Date: Tue, 25 Jun 2024 09:31:09 +0300 Subject: [PATCH] add git alias amenda --- home/user/.config/git/config | 1 + 1 file changed, 1 insertion(+) diff --git a/home/user/.config/git/config b/home/user/.config/git/config index 3883931..be4ee8a 100644 --- a/home/user/.config/git/config +++ b/home/user/.config/git/config @@ -54,6 +54,7 @@ co = checkout ci = commit amend = commit --amend --no-edit + amenda = commit --all --amend --no-edit cm = "!_m() { git commit -m \"$*\"; }; _m" ps = "!git push origin $(git rev-parse --abbrev-ref HEAD)" pl = "!git pull origin $(git rev-parse --abbrev-ref HEAD)"