Created
July 1, 2014 20:36
-
-
Save cdl/7e50b85c7d6f61eb15ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Git aliases | |
alias ga="git add" | |
alias gs="git status" | |
alias gc="git commit" | |
alias gcm="git commit -m $1" | |
alias gca="git commit -a" | |
alias gcam="git commit -am $1" | |
# git lg: http://fredkschott.com/post/2014/02/git-log-is-so-2005/ | |
alias gl="git lg" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some git aliases I have in my
~/.aliases
file.