.gitconfig 643 B

123456789101112131415161718192021222324252627282930313233
  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. # git.debian.org specifics
  24. [url "git://anonscm.debian.org"]
  25. insteadOf = "git://git.debian.org"
  26. [url "ssh://git.debian.org"]
  27. pushInsteadOf = "git://git.debian.org"