summaryrefslogtreecommitdiff
path: root/git/config.py
Commit message (Collapse)AuthorAgeFilesLines
* Update the config parser using code from python2.7Keith Mosher2014-08-121-42/+52
| | | | | | Notably this adds support for valueless options ( e.x. the option "required" which can be added to filters which must succeed.)
* Autopep8 fixes with maximum line length 120Craig Northway2014-07-251-101/+104
|
* tabs to 4 spaces - overall state of this branch is desolate, but fixable. ↵Sebastian Thiel2014-02-091-419/+419
| | | | Needs plenty of work
* Fixed a case were values containing \\" were not properly escapedJulien Kauffmann2012-02-081-1/+6
|
* Fixed quotes and backslashes handling in GitConfigParserJulien Kauffmann2012-02-081-3/+22
|
* Greatly improved robustness of config parser - it can now take pretty much ↵Sebastian Thiel2011-06-071-3/+8
| | | | everything. Includes an updated config file which includes all the new additions
* Match any number of leading spaces in config valuesJesse Keating2011-06-071-1/+1
| | | | | | The regex comments state that any number of leading tabs or spaces should be allowed, however the regex was only catching zero or one space. This allows multiple spaces.
* Added all code from gitdb to gitpython. Next is to make it generally work. ↵Sebastian Thiel2011-05-051-1/+411
| | | | Then the tests will need some work
* configparser is now part of gitdb. Test still remains until it was replaced ↵Sebastian Thiel2011-04-251-411/+1
| | | | by its gitdb counterpart through inheritance. All items which are part of gitdb but used by gitpython need their own verification within gitpython
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+420
adjusted