Last active
October 1, 2016 06:17
-
-
Save abrahamfast/fef5106da5dbc529481d1ed9459a63c1 to your computer and use it in GitHub Desktop.
git command line shortcuts
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 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