From bd56bfa676fda5e5e0e46fffe3c1c6e8fa8e4f22 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Tue, 25 Jan 2022 19:55:25 -0500 Subject: [PATCH] Added the -a flag to the gcm alias --- zsh/config/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/config/.zshrc b/zsh/config/.zshrc index 38800bb..3b27597 100644 --- a/zsh/config/.zshrc +++ b/zsh/config/.zshrc @@ -181,7 +181,7 @@ alias g='git' alias ga='git add' alias gcb='git checkout -b' alias gco='git checkout' -alias gcm='git commit -m' +alias gcm='git commit -a -m' #alias gma() { git add . && git commit -m "$1" } alias gp='git push' alias gs='git status'