.gitconfig 667 B

1234567891011121314151617181920212223242526272829303132333435
  1. [user]
  2. name = Emmanuel Bouthenot
  3. email = kolter@openics.org
  4. signingkey = 929D42C3
  5. [alias]
  6. br = branch
  7. st = status
  8. l = log --graph --decorate --pretty=format:\"%h %C(magenta)%ci%Creset%C(yellow)%d %Creset%s %C(cyan)%cn <%cE>\"
  9. spull = submodule foreach 'git pull'
  10. [color]
  11. ui = auto
  12. pager = true
  13. [color "diff"]
  14. meta = green
  15. frag = yellow
  16. old = magenta
  17. new = cyan
  18. [color "status"]
  19. header = bold blue
  20. added = green
  21. changed = bold red
  22. untracked = bold yellow
  23. [merge]
  24. tool = vimdiff
  25. # git.debian.org specifics
  26. [url "git://anonscm.debian.org"]
  27. insteadOf = "git://git.debian.org"
  28. [url "ssh://git.debian.org"]
  29. pushInsteadOf = "git://git.debian.org"