diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-19 14:27:10 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-19 14:27:10 +0200 |
commit | 3fd37230e76a014cf5c45d55daf0be2caa6948b7 (patch) | |
tree | d94329c8f58e96066895e0e95a8550dfb58e5d0b /test/fixtures | |
parent | 9513aa01fab73f53e4fe18644c7d5b530a66c6a1 (diff) | |
download | gitpython-3fd37230e76a014cf5c45d55daf0be2caa6948b7.tar.gz |
implemented config class as far as necessary, one check is still failing
Added odict module to get an OrderedDict to be used in the config parser, assuring the order of sections and options does not change
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/git_config_global | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/fixtures/git_config_global b/test/fixtures/git_config_global new file mode 100644 index 00000000..1a55397f --- /dev/null +++ b/test/fixtures/git_config_global @@ -0,0 +1,24 @@ +[alias] + st = status + ci = commit + co = checkout + br = branch +[color] + branch = auto + diff = auto + interactive = auto + status = auto +[user] + name = Sebastian Thiel + email = byronimo@gmail.com +[core] + editor = vim + autocrlf = false + packedGitLimit = 1g + packedGitWindowSize = 512m +[pack] + windowMemory = 512m +[merge] + tool = meld +[diff] + tool = meld |