git tweaks

rails tweaks
added heroku plugin
This commit is contained in:
zerobearing2
2010-10-06 17:42:29 -07:00
parent a6d20e67fe
commit 3802bcc6a6
3 changed files with 66 additions and 1 deletions

View File

@@ -15,6 +15,8 @@ alias gb='git branch'
alias gba='git branch -a'
alias gcount='git shortlog -sn'
alias gcp='git cherry-pick'
alias gco='git checkout'
alias gexport='git archive --format zip --output'
function git-help() {
echo "Git Custom Aliases Usage"
@@ -32,5 +34,7 @@ function git-help() {
echo " gba = git branch -a"
echo " gcount = git shortlog -sn"
echo " gcp = git cherry-pick"
echo " gco = git checkout"
echo " gexport = git git archive --format zip --output"
echo
}