Added aliases for ruby (rb) and git commit --interactive (gci)

pull/36/head
Mark Szymanski 2010-12-20 18:08:01 -06:00
parent f3a4d44619
commit 6ffba72087
2 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,8 @@ alias q="exit"
alias irc="$IRC_CLIENT" alias irc="$IRC_CLIENT"
alias rb="ruby"
# Pianobar can be found here: http://github.com/PromyLOPh/pianobar/ # Pianobar can be found here: http://github.com/PromyLOPh/pianobar/
alias piano="pianobar" alias piano="pianobar"

View File

@ -16,6 +16,7 @@ alias gpo='git push origin'
alias gdv='git diff -w "$@" | vim -R -' alias gdv='git diff -w "$@" | vim -R -'
alias gc='git commit -v' alias gc='git commit -v'
alias gca='git commit -v -a' alias gca='git commit -v -a'
alias gci='git commit --interactive'
alias gb='git branch' alias gb='git branch'
alias gba='git branch -a' alias gba='git branch -a'
alias gcount='git shortlog -sn' alias gcount='git shortlog -sn'
@ -56,6 +57,7 @@ function git-help() {
echo " gdv = git diff -w \"$@\" | vim -R -" echo " gdv = git diff -w \"$@\" | vim -R -"
echo " gc = git commit -v" echo " gc = git commit -v"
echo " gca = git commit -v -a" echo " gca = git commit -v -a"
echo " gci = git commit --interactive"
echo " gb = git branch" echo " gb = git branch"
echo " gba = git branch -a" echo " gba = git branch -a"
echo " gcount = git shortlog -sn" echo " gcount = git shortlog -sn"