public
Description: bash scripts, aliases, other misc things go here
Homepage: http://opensource.thinkrelevance.com
Clone URL: git://github.com/relevance/etc.git
rsanheim (author)
Sat Jul 04 21:59:44 -0700 2009
commit  7f8655e40983236b16afeccb81221cfd2113116f
tree    dbbab7688ef88f6ea1fa8524483a47251899f453
parent  588e2728abe5e7e8bbd58acb2017fa0664b893ec
etc / bash / git.sh
100644 19 lines (17 sloc) 0.485 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Thanks to Geoffrey's peepcode for many of these
alias g='git '
alias gst='git status'
alias gs='git status'
alias gl='git pull'
alias gp='git push'
alias gd='git diff | mate'
alias gdh='git diff HEAD | mate'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gb='git branch'
alias gba='git branch -a'
alias gcap='git commit -v -a && git push'
alias gpp='git pull; git push'
 
# For when you are stuck between worlds...
alias gsd='git svn dcommit'
alias gsr='git svn rebase'