Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix error parsing a non-existant configuration filev1.6.8.7 | Shawn O. Pearce | 2009-07-02 | 1 | -0/+9 |
| | | | | | | | | If a file (e.g. ~/.gitconfig) does not exist, we get None here rather than a string. NoneType lacks rstrip() so we cannot strip it. Signed-off-by: Shawn O. Pearce <sop@google.com> | ||||
* | git_config: handle configuration entries with no values | David Aguilar | 2009-06-29 | 1 | -0/+43 |
A git-config entry with no value was preventing repo from initializing. This modifies _ReadGit() to handle config entries with empty values. Signed-off-by: David Aguilar <davvid@gmail.com> Reported-by: Josh Guilfoyle <jasta00@gmail.com> |