Added git alias: gss=git status -s

pull/17/head
Mark Szymanski 2010-10-24 08:57:01 -05:00
parent 21820276fb
commit 5ec52df28a
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ alias g='git'
alias get='git' alias get='git'
alias gst='git status' alias gst='git status'
alias gs='git status' alias gs='git status'
alias gss='git status -s'
alias gl='git pull' alias gl='git pull'
alias gup='git fetch && git rebase' alias gup='git fetch && git rebase'
alias gp='git push' alias gp='git push'
@ -46,6 +47,7 @@ function git-help() {
echo " ga = git add" echo " ga = git add"
echo " gall = git add ." echo " gall = git add ."
echo " gst/gs = git status" echo " gst/gs = git status"
echo " gss = git status -s"
echo " gl = git pull" echo " gl = git pull"
echo " gup = git fetch && git rebase" echo " gup = git fetch && git rebase"
echo " gp = git push" echo " gp = git push"