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