Skip to content

Instantly share code, notes, and snippets.

@abrahamfast
Last active October 1, 2016 06:17
Show Gist options
  • Save abrahamfast/fef5106da5dbc529481d1ed9459a63c1 to your computer and use it in GitHub Desktop.
Save abrahamfast/fef5106da5dbc529481d1ed9459a63c1 to your computer and use it in GitHub Desktop.
git command line shortcuts
# ----------------------
# Git Aliases
# ----------------------
alias ga='git add'
alias gaa='git add .'
alias gaaa='git add -A'
alias gb='git branch'
alias gbd='git branch -d '
alias gc='git commit'
alias gcm='git commit -m'
alias gco='git checkout'
alias gcob='git checkout -b'
alias gcom='git checkout master'
alias gd='git diff'
alias gda='git diff HEAD'
alias gi='git init'
alias gl='git log'
alias glg='git log --graph --oneline --decorate --all'
alias gld='git log --pretty=format:"%h %ad %s" --date=short --all'
alias gm='git merge --no-ff'
alias gp='git pull'
alias gss='git status -s'
alias gst='git stash'
alias gstl='git stash list'
alias gstp='git stash pop'
alias gstd='git stash drop'
# ----------------------
# Git Functions
# ----------------------
# Git log find by commit message
function glf() { git log --all --grep="$1"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment