1
0

gitconfig 308 B

123456789101112131415161718192021
  1. [init]
  2. defaultBranch = main
  3. [push]
  4. autoSetupRemote = true
  5. [rerere]
  6. enabled = true
  7. [column]
  8. ui = auto
  9. [branch]
  10. sort = -committerdate
  11. [tag]
  12. sort = version:refname
  13. [diff]
  14. algorithm = histogram
  15. colorMoved = plain
  16. mnemonicPrefix = true
  17. renames = true
  18. [fetch]
  19. prune = true
  20. pruneTags = true
  21. all = true