Skip to content

Instantly share code, notes, and snippets.

@cakyus
Created March 23, 2014 13:37
Show Gist options
  • Save cakyus/9723174 to your computer and use it in GitHub Desktop.
Save cakyus/9723174 to your computer and use it in GitHub Desktop.
git alias
alias.c=commit -m
alias.b=branch -v
alias.r=remote -v
alias.s=status -s
alias.a=add -A
alias.ba=branch --verbose --all
alias.la=log --graph --pretty=format:"%Cred%h%Creset%C(yellow)%d%Creset %s - %aE %Cgreen%cr%Creset" --abbrev-commit
alias.l=log -n10 --graph --pretty=format:"%Cred%h%Creset%C(yellow)%d%Creset %s - %Cblue%aE%Creset %Cgreen%cr%Creset" --abbrev-commit
alias.xa=stash apply
alias.l1=log -n 1
alias.xm=stash save --include-untracked --all
alias.xl=stash list
alias.x=stash save --include-untracked --all
alias.ll=log -n10 --pretty=format:"%Cred%h%Creset%C(yellow)%d%Creset %s - %Cblue%aE%Creset %Cgreen%cr%Creset" --abbrev-commit
alias.l1a=log --name-status -n 1 --oneline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment