Added aliases for ruby (rb) and git commit --interactive (gci)
parent
f3a4d44619
commit
6ffba72087
|
|
@ -23,6 +23,8 @@ alias q="exit"
|
|||
|
||||
alias irc="$IRC_CLIENT"
|
||||
|
||||
alias rb="ruby"
|
||||
|
||||
# Pianobar can be found here: http://github.com/PromyLOPh/pianobar/
|
||||
|
||||
alias piano="pianobar"
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ alias gpo='git push origin'
|
|||
alias gdv='git diff -w "$@" | vim -R -'
|
||||
alias gc='git commit -v'
|
||||
alias gca='git commit -v -a'
|
||||
alias gci='git commit --interactive'
|
||||
alias gb='git branch'
|
||||
alias gba='git branch -a'
|
||||
alias gcount='git shortlog -sn'
|
||||
|
|
@ -56,6 +57,7 @@ function git-help() {
|
|||
echo " gdv = git diff -w \"$@\" | vim -R -"
|
||||
echo " gc = git commit -v"
|
||||
echo " gca = git commit -v -a"
|
||||
echo " gci = git commit --interactive"
|
||||
echo " gb = git branch"
|
||||
echo " gba = git branch -a"
|
||||
echo " gcount = git shortlog -sn"
|
||||
|
|
|
|||
Loading…
Reference in New Issue