Advertisement
Guest User

zlogitcng

a guest
Oct 7th, 2014
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. [alias]
  2. co = checkout
  3. ci = commit
  4. br = branch
  5. st = status
  6. l = log --name-status
  7. lg = log --stat
  8. unstage = reset HEAD --
  9. last = log -1 HEAD
  10. diffc = diff --cached
  11. conflicts = !git ls-files -u | cut -f 2 | sort -u
  12. ls = log --date=iso --date=short --pretty=format:"%C(magenta)%ad\\ %C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
  13. graph = log --graph --pretty=format:"%C(white)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
  14. ld = log --pretty=format:"%C(white)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative
  15. ll = log --pretty=format:"%C(white)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
  16. le = log --oneline --decorate
  17. fl = log -u
  18. la = "!git config -l | ack alias | cut -c 7-"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement