diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-18 23:15:55 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-18 23:15:55 +0200 |
| commit | 9513aa01fab73f53e4fe18644c7d5b530a66c6a1 (patch) | |
| tree | b5f9113b04215d1cc31d91fd7a1ef05e3b90c441 /test/fixtures | |
| parent | 657a57adbff49c553752254c106ce1d5b5690cf8 (diff) | |
| download | GitPython-9513aa01fab73f53e4fe18644c7d5b530a66c6a1.tar.gz GitPython-9513aa01fab73f53e4fe18644c7d5b530a66c6a1.zip | |
Added frame for configuration reader involving a meta class, decorators and tests - most of which still has to be filled out
Diffstat (limited to 'test/fixtures')
| -rw-r--r-- | test/fixtures/git_config | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/fixtures/git_config b/test/fixtures/git_config new file mode 100644 index 00000000..3c91985f --- /dev/null +++ b/test/fixtures/git_config @@ -0,0 +1,23 @@ +[core] + repositoryformatversion = 0 + filemode = 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"] + remote = origin + merge = refs/heads/master +[remote "mainline"] + url = git://gitorious.org/git-python/mainline.git + fetch = +refs/heads/*:refs/remotes/mainline/* +[remote "MartinMarcher"] + url = git://gitorious.org/~martin.marcher/git-python/serverhorror.git + fetch = +refs/heads/*:refs/remotes/MartinMarcher/* +[gui] + geometry = 1316x820+219+243 207 192 +[branch "mainline_performance"] + remote = mainline + merge = refs/heads/master |
