From 28e38811332d8becd553f9a35d7b57d706981837 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Wed, 6 Nov 2019 08:38:28 +0200 Subject: [PATCH] Added git add commit function Signed-off-by: Marko Korhonen --- home/.config/zsh/03-functions.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/home/.config/zsh/03-functions.zsh b/home/.config/zsh/03-functions.zsh index af055a2..84d7f46 100644 --- a/home/.config/zsh/03-functions.zsh +++ b/home/.config/zsh/03-functions.zsh @@ -9,6 +9,7 @@ git() { # git shorthands gc() { git commit $@ } +gac() { ga && gc } gpull() { git pull $@ } gpush() { git push $@ }