Advertisement
Guest User

Untitled

a guest
May 29th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. # ~/.gitconfig
  2.  
  3. [color]
  4. ui = auto
  5. [color "branch"]
  6. current = yellow reverse
  7. local = yellow
  8. remote = green
  9. [color "diff"]
  10. meta = yellow bold
  11. frag = magenta bold
  12. old = red bold
  13. new = green bold
  14. [color "status"]
  15. added = yellow
  16. changed = green
  17. untracked = cyan
  18. [color]
  19. ui = true
  20. [color "diff"]
  21. whitespace = red reverse
  22. [core]
  23. whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
  24. [alias]
  25. st = status
  26. ci = commit
  27. br = branch
  28. co = checkout
  29. df = diff
  30. lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
  31. lol = log --graph --decorate --pretty=oneline --abbrev-commit
  32. lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
  33.  
  34. [user]
  35. name = <name>
  36. email = <email>
  37. [branch]
  38. autosetupmerge = true
  39. [branch "master"]
  40. mergeoptions = --no-ff
  41. [branch "staging"]
  42. mergeoptions = --no-ff
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement