public
Description: bash scripts, aliases, other misc things go here
Homepage: http://opensource.thinkrelevance.com
Clone URL: git://github.com/relevance/etc.git
Jason Rudolph (author)
Fri Apr 11 08:16:40 -0700 2008
commit  feb39741e6623b9b4f5e3a7a6cf5dd8d420ee6c2
tree    7ba464628e4042e3e192e4f861bd52420157fb8d
parent  fe29f10dac5130225b4b9852dbab80b2fdda310e
etc / bash / git.sh
100644 13 lines (13 sloc) 0.353 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
# Thanks to Geoffrey's peepcode for many of these
alias g='git'
alias gst='git status'
alias gl='git pull'
alias gp='git push'
alias gd='git diff | mate'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gb='git branch'
alias gba='git branch -a'
# For when you are stuck between worlds...
alias gsd='git svn dcommit'
alias gsb='git svn rebase'