Skip to content

Instantly share code, notes, and snippets.

@LNA
Last active April 6, 2017 13:57
Show Gist options
  • Save LNA/bdfd6c1a85c2340c331b0b75e3b2883a to your computer and use it in GitHub Desktop.
Save LNA/bdfd6c1a85c2340c331b0b75e3b2883a to your computer and use it in GitHub Desktop.
#Example pulled from my dotfiles
# git
alias g="git"
alias gs="git status"
alias gl="git l"
alias gcm="git commit -m"
alias ga="git add"
alias gd="git diff"
alias ga.="git add -A"
alias gco="git checkout"
alias gcob="git checkout -b"
alias glp="git log --pretty=oneline"
alias gb="git branch"
alias gp="git push"
alias gds="git diff --staged"
alias amend="git commit --amend"
alias gap="git add --patch"
alias gc="git commit"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment