Skip to content

Instantly share code, notes, and snippets.

@cdl
Created July 1, 2014 20:36
Show Gist options
  • Save cdl/7e50b85c7d6f61eb15ca to your computer and use it in GitHub Desktop.
Save cdl/7e50b85c7d6f61eb15ca to your computer and use it in GitHub Desktop.
# 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"
@cdl
Copy link
Author

cdl commented Jul 1, 2014

Some git aliases I have in my ~/.aliases file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment