.gitconfig 448 B

123456789101112131415161718192021
  1. # This is Git's per-user configuration file.
  2. [user]
  3. # Please adapt and uncomment the following lines:
  4. name = xfnw
  5. email = xfnw@riseup.net
  6. [init]
  7. defaultBranch = main
  8. [sendemail]
  9. smtpencryption = tls
  10. smtpserver = mail.riseup.net
  11. smtpuser = xfnw@riseup.net
  12. smtpserverport = 587
  13. [alias]
  14. psuh = push
  15. quickserve = daemon --verbose --export-all --base-path=.git --reuseaddr --strict-paths .git/
  16. [commit]
  17. verbose = true
  18. [pull]
  19. rebase = true