summaryrefslogtreecommitdiff
path: root/git/refs
Commit message (Collapse)AuthorAgeFilesLines
...
* | pep8 linting (whitespaces)Antoine Musso2014-11-166-213/+211
| | | | | | | | | | | | | | | | | | | | | | W191 indentation contains tabs E221 multiple spaces before operator E222 multiple spaces after operator E225 missing whitespace around operator E271 multiple spaces after keyword W292 no newline at end of file W293 blank line contains whitespace W391 blank line at end of file
* | Merge branch 'patch-1' of https://github.com/syabro/GitPython into ↵Sebastian Thiel2014-11-141-2/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | syabro-patch-1 Note by Sebastian Thiel: Was already fixed Conflicts: git/refs/reference.py
| * | Fixed NameErrorMaxim Syabro2014-02-101-1/+1
| | |
* | | Fixed undefined variable 'path' in ReferenceMichael Goerz2014-04-061-1/+1
| |/ |/|
* | tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel2014-02-097-1330/+1330
|/ | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* Basic remote functionality moved to Reference type, as it can in fact be ↵Sebastian Thiel2011-07-043-19/+43
| | | | useful for tags as well, which might end up somewhere in the refs/remotes space. Its not likely that it will ever be used on a pure Reference instance though, but it is the smallest common base
* refs: added constructor flag to allow refs to be instatiated from any path, ↵Sebastian Thiel2011-07-041-4/+6
| | | | including simple test
* Fixed critical issue that would cause a string to be passed to methods that ↵Sebastian Thiel2011-06-081-1/+1
| | | | expect a stream
* relaxed implementation when comparing symbolic references against other ↵Sebastian Thiel2011-06-081-1/+3
| | | | items which don't have a path. Fixed test_refs to work in all cases - it was previously dependent on the order of items returned by the file system
* log: non-existing logs no longer throw an exception, but are ignored. Fixed ↵Sebastian Thiel2011-06-082-6/+15
| | | | critical bug which caused packed-ref files to be written with native line endings, which made git fail to parse it. I wonder why I never noticed this before, or ignored it. Unbelievable \!
* Commit.create_from_tree used a now renamed keyword parameter - no test-case ↵Sebastian Thiel2010-11-261-1/+2
| | | | ever runs this code, which is still an issue
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-257-0/+1405
adjusted