Removed custom.bash and am now completely ignoring all files within the custom directory. Started de-macify to provide more support for linux (thanks to alsemyonov on github).

This commit is contained in:
Robert R Evans
2010-10-06 17:27:55 -07:00
parent a6d20e67fe
commit c9da086643
11 changed files with 51 additions and 18 deletions

View File

@@ -7,7 +7,6 @@ alias gs='git status'
alias gl='git pull'
alias gup='git fetch && git rebase'
alias gp='git push'
alias gd='git diff | mate'
alias gdv='git diff -w "$@" | vim -R -'
alias gc='git commit -v'
alias gca='git commit -v -a'
@@ -16,6 +15,20 @@ alias gba='git branch -a'
alias gcount='git shortlog -sn'
alias gcp='git cherry-pick'
case $OSTYPE in
linux*)
alias gd='git diff | vim -R -'
;;
darwin*)
alias gd='git diff | mate'
;;
darwin*)
alias gd='git diff'
;;
esac
function git-help() {
echo "Git Custom Aliases Usage"
echo