Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed io types to make tests work on PY2 once again.py3 | Sebastian Thiel | 2015-01-05 | 1 | -1/+1 |
| | | | | Now it's about going through PY3 issues | ||||
* | Dum brute force conversion of all types. | Sebastian Thiel | 2015-01-04 | 2 | -2/+7 |
| | | | | | | However, StringIO really is ByteIO in most cases, and py2.7 should run but doesn't. This should be made work first. | ||||
* | initial set of adjustments to make (most) imports work. | Sebastian Thiel | 2015-01-04 | 5 | -9/+10 |
| | | | | More to come, especially when it's about strings | ||||
* | Removed unnecessary (non-gitpython) tests and fixed flake80.3.3 | Sebastian Thiel | 2015-01-04 | 3 | -14/+5 |
| | |||||
* | Replaced ordered dict with standard version; used logging module | Sebastian Thiel | 2015-01-04 | 1 | -2/+2 |
| | | | | All performance tests still print to stderr, but do so in a py3 compatible way | ||||
* | Bumped version, updated changelog, reduced code smell | Sebastian Thiel | 2015-01-04 | 5 | -20/+13 |
| | | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements | ||||
* | Another travis debugging commit | Sebastian Thiel | 2015-01-04 | 1 | -2/+0 |
| | |||||
* | Intermediate debug commit for travis ... do not use | Sebastian Thiel | 2015-01-04 | 1 | -0/+2 |
| | |||||
* | encode name of actor to utf-8 | Kenji Fujiwara | 2014-12-12 | 1 | -1/+2 |
| | |||||
* | Fixes https://github.com/gitpython-developers/GitPython/issues/130 | Sebastian Thiel | 2014-11-19 | 1 | -1/+3 |
| | |||||
* | Applied autopep8 | Sebastian Thiel | 2014-11-19 | 4 | -76/+79 |
| | | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/ | ||||
* | Added SymbolicReference.is_remote() utility method. | Sebastian Thiel | 2014-11-19 | 2 | -1/+5 |
| | | | | | | Based on the functionality proposed in https://github.com/gitpython-developers/GitPython/pull/101 [ci skip] | ||||
* | Assure API remains backwards compatible; update API docs | Sebastian Thiel | 2014-11-17 | 1 | -3/+9 |
| | |||||
* | Merge branch '0.3' of https://github.com/firm1/GitPython into firm1-0.3 | Sebastian Thiel | 2014-11-17 | 2 | -6/+10 |
|\ | | | | | | | | | | | | | | | | | | | Fixed most pressing issues, more to come in next commit as we introduced a regression here. Conflicts: git/objects/commit.py git/refs/log.py git/refs/symbolic.py | ||||
| * | Update symbolic.py | firm1 | 2014-03-24 | 1 | -1/+1 |
| | | |||||
| * | correct log reference | firm1 | 2014-03-24 | 1 | -1/+1 |
| | | |||||
* | | pep8 linting (trailing whitespace) | Antoine Musso | 2014-11-16 | 6 | -73/+73 |
| | | | | | | | | W291 trailing whitespace | ||||
* | | pep8 linting (double spaces before comment) | Antoine Musso | 2014-11-16 | 1 | -2/+2 |
| | | | | | | | | E261 at least two spaces before inline comment | ||||
* | | pep8 linting (whitespace before/after) | Antoine Musso | 2014-11-16 | 6 | -27/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | E201 whitespace after '(' E202 whitespace before ')' E203 whitespace before ':' E225 missing whitespace around operator E226 missing whitespace around arithmetic operator E227 missing whitespace around bitwise or shift operator E228 missing whitespace around modulo operator E231 missing whitespace after ',' E241 multiple spaces after ',' E251 unexpected spaces around keyword / parameter equals | ||||
* | | pep8 linting (blank lines expectations) | Antoine Musso | 2014-11-16 | 6 | -10/+12 |
| | | | | | | | | | | | | E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n) | ||||
* | | pep8 linting (whitespaces) | Antoine Musso | 2014-11-16 | 6 | -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 Thiel | 2014-11-14 | 1 | -2/+0 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | syabro-patch-1 Note by Sebastian Thiel: Was already fixed Conflicts: git/refs/reference.py | ||||
| * | | Fixed NameError | Maxim Syabro | 2014-02-10 | 1 | -1/+1 |
| | | | |||||
* | | | Fixed undefined variable 'path' in Reference | Michael Goerz | 2014-04-06 | 1 | -1/+1 |
| |/ |/| | |||||
* | | tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵ | Sebastian Thiel | 2014-02-09 | 7 | -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 Thiel | 2011-07-04 | 3 | -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 Thiel | 2011-07-04 | 1 | -4/+6 |
| | | | | including simple test | ||||
* | Fixed critical issue that would cause a string to be passed to methods that ↵ | Sebastian Thiel | 2011-06-08 | 1 | -1/+1 |
| | | | | expect a stream | ||||
* | relaxed implementation when comparing symbolic references against other ↵ | Sebastian Thiel | 2011-06-08 | 1 | -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 Thiel | 2011-06-08 | 2 | -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 Thiel | 2010-11-26 | 1 | -1/+2 |
| | | | | ever runs this code, which is still an issue | ||||
* | Moved everything into the git subdirectory - some tests still need to be ↵ | Sebastian Thiel | 2010-11-25 | 7 | -0/+1405 |
adjusted |