From 6fc5c7df446315c7c3c303d34264ea812db5ecda Mon Sep 17 00:00:00 2001 From: ChrisTitusTech Date: Wed, 8 Jul 2020 13:56:39 -0500 Subject: [PATCH] updated alias --- aliasrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/aliasrc b/aliasrc index a9d881f..542ae7b 100644 --- a/aliasrc +++ b/aliasrc @@ -79,4 +79,9 @@ alias vim='vim' alias vi='vim' alias gds-start='sudo systemctl start openvpn-client@gds' alias gds-stop='sudo systemctl stop openvpn-client@gds' - +gitpush() { + git add . + git commit -m "$*" + git push +} +alias gp=gitpush