Archive

Archive for the ‘git’ Category

Git aliases

January 12th, 2010 Michael Comments off

I’m constantly passing a list of git aliases I use in my terminals.  Here they are:


alias gb='git branch'
alias gba='git branch -a'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gd='git diff | mate'
alias gl='git pull origin master'
alias gp='git push origin master'
alias gst='git status'

Categories: How-To, Linux, Mac, Open Source, Programming, git Tags: