notinlist

My git config (for stackoverflow.com)

Mar 31st, 2016
639
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. ------ Systemwide
  2.  
  3. [core]
  4. symlinks = false
  5. autocrlf = true
  6. [color]
  7. diff = auto
  8. status = auto
  9. branch = auto
  10. interactive = true
  11. [credential]
  12. helper = manager
  13. [pack]
  14. [help]
  15. format = html
  16. [http]
  17. sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
  18. [sendemail]
  19. smtpserver = /bin/msmtp.exe
  20. [diff "astextplain"]
  21. textconv = astextplain
  22. [rebase]
  23. autosquash = true
  24.  
  25. ------ Global
  26.  
  27. [user]
  28. name = Mr. Top Secret.
  29. [credential "https://github.com/Company/project.git"]
  30. helper = wincred
  31. username = somebody
  32. [filter "lfs"]
  33. clean = git-lfs clean %f
  34. smudge = git-lfs smudge %f
  35. required = true
  36.  
  37. ------ Local
  38.  
  39. [core]
  40. repositoryformatversion = 0
  41. filemode = false
  42. bare = false
  43. logallrefupdates = true
  44. symlinks = false
  45. ignorecase = true
  46. hideDotFiles = dotGitOnly
  47. [remote "origin"]
  48. url = https://github.com/Company/project.git
  49. fetch = +refs/heads/*:refs/remotes/origin/*
Advertisement
Add Comment
Please, Sign In to add comment