Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. [core]
  2. whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
  3. autocrlf = input
  4. excludesfile = /home/tim/.gitignore.global
  5. editor = vim
  6. mergetool = meld
  7.  
  8. [color]
  9. ui = auto
  10.  
  11. [color "branch"]
  12. current = yellow reverse
  13. local = yellow
  14. remote = green
  15.  
  16. [color "diff"]
  17. meta = yellow bold
  18. frag = magenta bold
  19. old = red bold
  20. new = green bold
  21. whitespace = red reverse
  22.  
  23. [color "status"]
  24. added = yellow
  25. changed = green
  26. untracked = cyan
  27.  
  28. [alias]
  29. st = status
  30. ci = commit
  31. br = branch
  32. co = checkout
  33. df = diff
  34. lg = log -p
  35. spull = !git-svn fetch && git-svn rebase
  36. spush = !git-svn dcommit
  37. lc = log ORIG_HEAD.. --stat --no-merges
  38. undo = reset --hard
  39. changes = diff --name-status -r
  40. diffstat = diff --stat -r
  41. prm = pull --rebase upstream master
  42. cl = clean -dxf -e vendor
  43.  
  44. [user]
  45. name = <your name>
  46. email = <your email>
  47. [push]
  48. default = current
  49. [gc]
  50. autoDetach = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement