You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.5KB

  1. [core]
  2. repositoryformatversion = 0
  3. filemode = true
  4. bare = false
  5. logallrefupdates = true
  6. [remote "origin"]
  7. fetch = +refs/heads/*:refs/remotes/origin/*
  8. url = git://gitorious.org/~byron/git-python/byrons-clone.git
  9. pushurl = git@gitorious.org:~byron/git-python/byrons-clone.git
  10. # a tab indented section header
  11. [branch "master"]
  12. remote = origin
  13. merge = refs/heads/master
  14. # an space indented section header
  15. [remote "mainline"]
  16. # space indented comment
  17. url = git://gitorious.org/git-python/mainline.git
  18. fetch = +refs/heads/*:refs/remotes/mainline/*
  19. [remote "MartinMarcher"]
  20. # tab indented comment
  21. url = git://gitorious.org/~martin.marcher/git-python/serverhorror.git
  22. fetch = +refs/heads/*:refs/remotes/MartinMarcher/*
  23. # can handle comments - the section name is supposed to be stripped
  24. # causes stock git-config puke
  25. [ gui ]
  26. geometry = 1316x820+219+243 207 192
  27. [branch "mainline_performance"]
  28. remote = mainline
  29. merge = refs/heads/master
  30. # section with value defined before include to be overriden
  31. [sec]
  32. var0 = value0_main
  33. [include]
  34. path = doesntexist.cfg
  35. # field should be 'path' so abspath should be ignored
  36. abspath = /usr/bin/foodoesntexist.bar
  37. path = /usr/bin/foodoesntexist.bar
  38. # should be relative to the path of this config file
  39. path = ./git_config-inc.cfg
  40. # and defined after include. According to the documentation
  41. # and behavior of git config, this should be the value since
  42. # inclusions should be processed immediately
  43. [sec]
  44. var1 = value1_main