From 4494a8aedd902bda49294f3c5d3b505e4b987712 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 21 Jan 2022 05:51:07 -0600 Subject: [PATCH] [ Profile Git ] Added git aliases for straight commit & commit -m --- .profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.profile b/.profile index 966b1247..68d4ef6d 100644 --- a/.profile +++ b/.profile @@ -74,7 +74,8 @@ fi ## Git Aliases ## if which git >/dev/null 2>&1; then - alias gc="git commit -m" + alias gc="git commit" + alias gcm="git commit -m" alias ga="git add" alias gp="git push" alias gb="git branch"