Guest User

Untitled

a guest
Nov 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. Following should be added to your ~/.gitconfig file:
  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. whitespace = red reverse
  15. [color "status"]
  16. added = yellow
  17. changed = green
  18. untracked = cyan
  19. [core]
  20. whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
  21.  
  22. [alias]
  23. st = status
  24. ci = commit
  25. br = branch
  26. co = checkout
  27. df = diff
  28. dc = diff --cached
  29. lg = log -p
  30. lol = log --graph --decorate --pretty=oneline --abbrev-commit
  31. lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
  32. ls = ls-files
  33.  
  34. # Show files ignored by git:
  35. ign = ls-files -o -i --exclude-standard
Add Comment
Please, Sign In to add comment