From fe83d37794437f691502ad8293da6ecfa2f1dbe1 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Wed, 24 Nov 2021 14:18:04 +0100 Subject: [PATCH] bash: alias git --- .bash_extra | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bash_extra b/.bash_extra index 3781021..3fc4fdc 100644 --- a/.bash_extra +++ b/.bash_extra @@ -132,7 +132,7 @@ function ssh { } function gcm { # übergibt alle argumente an git commit -m als commit nachricht - git commit -m "$*" + git commit -m ""$*"" } @@ -158,6 +158,7 @@ alias gdel="git add . && git stash && git stash clear" alias glast="git log -1 HEAD --stat" alias gsp="git stage -p" alias gd="git diff" +alias gs="git status" alias gc="git checkout" # vim alias v="view"