From 745f59931dcb577cca7102177a171c6d2a586f00 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Thu, 4 May 2023 15:05:52 -0700 Subject: [PATCH] pdate git aliases --- init.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.zsh b/init.zsh index ec504b8..5417df9 100644 --- a/init.zsh +++ b/init.zsh @@ -103,12 +103,12 @@ alias gaa="git add -A" alias gco="git commit" gcm() { local args="${@}" - git commit -m "${args:1}" # remove the leading space + git commit -m "${args}" } alias gca="git commit -a" gcam() { local args="${@}" - git commit -am "${args}" # remove the leading space + git commit -am "${args}" } alias gp="git push" alias gu="git pull"