diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2011-06-07 19:58:06 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2011-06-07 20:09:40 +0200 |
| commit | 5b3b65287e6849628066d5b9d08ec40c260a94dc (patch) | |
| tree | 86fa935d8237af1ebb67b14baac3585086655333 /git/test/fixtures | |
| parent | b3061698403f0055d1d63be6ab3fbb43bd954e8e (diff) | |
| download | GitPython-5b3b65287e6849628066d5b9d08ec40c260a94dc.tar.gz GitPython-5b3b65287e6849628066d5b9d08ec40c260a94dc.zip | |
Greatly improved robustness of config parser - it can now take pretty much everything. Includes an updated config file which includes all the new additions
Diffstat (limited to 'git/test/fixtures')
| -rw-r--r-- | git/test/fixtures/git_config | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/git/test/fixtures/git_config b/git/test/fixtures/git_config index 3c91985f..ff8e7114 100644 --- a/git/test/fixtures/git_config +++ b/git/test/fixtures/git_config @@ -1,22 +1,28 @@ [core] repositoryformatversion = 0 filemode = true - bare = false - logallrefupdates = true + bare = false + logallrefupdates = true [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = git://gitorious.org/~byron/git-python/byrons-clone.git pushurl = git@gitorious.org:~byron/git-python/byrons-clone.git -[branch "master"] +# a tab indented section header + [branch "master"] remote = origin merge = refs/heads/master -[remote "mainline"] +# an space indented section header + [remote "mainline"] + # space indented comment url = git://gitorious.org/git-python/mainline.git fetch = +refs/heads/*:refs/remotes/mainline/* + [remote "MartinMarcher"] + # tab indented comment url = git://gitorious.org/~martin.marcher/git-python/serverhorror.git fetch = +refs/heads/*:refs/remotes/MartinMarcher/* -[gui] + # can handle comments - the section name is supposed to be stripped +[ gui ] geometry = 1316x820+219+243 207 192 [branch "mainline_performance"] remote = mainline |
