Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: bash scripts, aliases, other misc things go here
Homepage: http://opensource.thinkrelevance.com
Clone URL: git://github.com/relevance/etc.git
Search Repo:
rsanheim (author)
Fri Apr 11 07:11:52 -0700 2008
commit  400d44db274919a29377c586b93c38ea3a7847ab
tree    e5c6d2f6a299cffc5a1933994636c4f7536f7e69
parent  feadfa8b6d7d71039d27fd1eeed2b11fcf9a979f
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'