Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. [user]
  2. name = Curtis Badke
  3. email = curtis@badkid.ca
  4.  
  5. [diff]
  6. renames = true
  7. [mergetool]
  8. keepBackup = false
  9. [log]
  10. date = relative
  11. [color]
  12. ui = auto
  13. [alias]
  14. st = status
  15. ci = commit
  16. co = checkout
  17. di = diff
  18. dc = diff --cached
  19. amend = commit --amend
  20. aa = add --all .
  21. ff = merge --ff-only
  22. pullff = pull --ff-only
  23. noff = merge --no-ff
  24. fa = fetch --all
  25. pom = push origin master
  26. b = branch
  27. ds = diff --stat=160,120
  28. dh1 = diff HEAD~1
  29. rbi = rebase -i
  30. rbc = rebase --continue
  31. rba = rebase --amend
  32.  
  33. lg = log --graph --date-order -C -M --pretty=format:\"<%Cred%h%Creset> %ad [%C(yellow)%an%Creset] %Cgreen%d%Creset %s\" --all --date=short
  34. new = log origin/master.. --reverse -C -M --pretty=format:\"<%Cred%h%Creset> %ad [%C(yellow)%an%Creset] %Cgreen%d%Creset %s\" --all --date=short
  35.  
  36. [merge]
  37. tool = vimdiff
  38. [core]
  39. editor = vi
  40. [pull]
  41. rebase = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement