Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Submodule.add() can now handle absolute module paths in agreement to the doc ↵ | Sebastian Thiel | 2015-01-15 | 1 | -0/+11 | |
| | | | | | | | | | | string. Previously, it would say it can handle absolute module paths, but didn't actually do so. A test-case was improved to check for this case. Fixes #161 | |||||
* | For some reason, the new submodule test still broke on py3 | Sebastian Thiel | 2015-01-15 | 1 | -3/+0 | |
| | | | | | | | Adjusted code to not check for .gitmodules existence anymore, we will deal with it. Fixes #117 | |||||
* | Added the first submodule will no longer cause an IOError. | Sebastian Thiel | 2015-01-15 | 1 | -1/+1 | |
| | | | | | | This is verified by the respective test. Fixes #117 | |||||
* | Added test to verify binary diffs are working as well. | Sebastian Thiel | 2015-01-09 | 1 | -1/+2 | |
| | | | | Related to #74 | |||||
* | suppression des prefixes de commit | firm1 | 2015-01-07 | 1 | -1/+1 | |
| | ||||||
* | Make flake8 happy | Sebastian Thiel | 2015-01-06 | 2 | -4/+5 | |
| | ||||||
* | test_tree works | Sebastian Thiel | 2015-01-06 | 1 | -2/+10 | |
| | ||||||
* | test_submodule works | Sebastian Thiel | 2015-01-06 | 1 | -1/+1 | |
| | ||||||
* | test_repo works | Sebastian Thiel | 2015-01-06 | 1 | -8/+23 | |
| | ||||||
* | test_refs works | Sebastian Thiel | 2015-01-06 | 1 | -2/+4 | |
| | ||||||
* | test_fun works | Sebastian Thiel | 2015-01-05 | 1 | -2/+3 | |
| | ||||||
* | test_commit works once again | Sebastian Thiel | 2015-01-05 | 3 | -7/+7 | |
| | ||||||
* | Fixes test_blob and improved commit writing/reading | Sebastian Thiel | 2015-01-05 | 2 | -33/+37 | |
| | ||||||
* | Added test of #147 to verify it works. | Sebastian Thiel | 2015-01-05 | 1 | -16/+9 | |
| | | | | Applied a few more fixes to commit implementation, possibly not the last | |||||
* | Intermediate commit: test_config and test_actor works | Sebastian Thiel | 2015-01-05 | 1 | -8/+8 | |
| | | | | | Kind of tackling the tasks step by step, picking low-hanging fruit first, or the ones that everyone depends on | |||||
* | Fixed io types to make tests work on PY2 once again.py3 | Sebastian Thiel | 2015-01-05 | 3 | -8/+8 | |
| | | | | Now it's about going through PY3 issues | |||||
* | Dum brute force conversion of all types. | Sebastian Thiel | 2015-01-04 | 4 | -6/+13 | |
| | | | | | | 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 | 9 | -32/+32 | |
| | | | | 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 | -7/+8 | |
| | ||||||
* | Replaced ordered dict with standard version; used logging module | Sebastian Thiel | 2015-01-04 | 3 | -14/+20 | |
| | | | | 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 | 7 | -27/+33 | |
| | | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements | |||||
* | Applied autopep8 | Sebastian Thiel | 2015-01-04 | 1 | -2/+2 | |
| | | | | autopep8 -v -j 8 --max-line-length 120 --in-place --recursive | |||||
* | Simplified parse_date implementation | Sebastian Thiel | 2014-12-19 | 1 | -7/+7 | |
| | | | | | This allows to deal with the previous UTC issue without manually reversing timezone adjustments | |||||
* | BF: adjust mktime output for the local offset (Close #218) | Yaroslav Halchenko | 2014-12-18 | 1 | -1/+4 | |
| | ||||||
* | Applied autopep8 | Sebastian Thiel | 2014-11-19 | 10 | -163/+185 | |
| | | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/ | |||||
* | Backport of https://github.com/gitpython-developers/GitPython/pull/118 | Sebastian Thiel | 2014-11-19 | 1 | -1/+1 | |
| | ||||||
* | Assure API remains backwards compatible; update API docs | Sebastian Thiel | 2014-11-17 | 1 | -2/+4 | |
| | ||||||
* | Merge branch '0.3' of https://github.com/firm1/GitPython into firm1-0.3 | Sebastian Thiel | 2014-11-17 | 1 | -3/+3 | |
|\ | | | | | | | | | | | | | | | | | | | 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 | |||||
| * | add param to create_from_tree | firm1 | 2014-03-24 | 1 | -3/+8 | |
| | | ||||||
* | | pep8 linting (trailing whitespace) | Antoine Musso | 2014-11-16 | 10 | -164/+164 | |
| | | | | | | | | 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 | 10 | -90/+90 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | 10 | -15/+37 | |
| | | | | | | | | | | | | 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 | 11 | -336/+331 | |
| | | | | | | | | | | | | | | | | | | | | | | 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 'sf-master' of https://github.com/johnsca/GitPython into ↵ | Sebastian Thiel | 2014-11-15 | 3 | -8/+29 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | johnsca-sf-master Conflicts: git/cmd.py git/objects/commit.py git/objects/fun.py git/objects/util.py git/remote.py git/repo/base.py git/test/lib/helper.py git/test/test_commit.py git/test/test_fun.py git/util.py | |||||
| * | | [#7021] Fixed error serializing programmatically created commits | Cory Johns | 2014-03-04 | 1 | -1/+1 | |
| | | | ||||||
| * | | [#7021] Added serialization and test from upstream and fixed test issues | Cory Johns | 2014-03-03 | 1 | -0/+5 | |
| | | | ||||||
| * | | [#7021] ticket:533 fixed error with pgp signed commits | Yuriy Arhipov | 2014-02-24 | 1 | -10/+26 | |
| | | | ||||||
| * | | [#5330] Fixed has_attr typo | Cory Johns | 2013-10-17 | 1 | -1/+1 | |
| | | | ||||||
| * | | [#5330] Ensure wait() is called on git processes | Cory Johns | 2013-10-09 | 1 | -0/+3 | |
| | | | ||||||
| * | | Fix whacky indentation | Tim Van Steenburgh | 2013-04-17 | 1 | -7/+7 | |
| | | | | | | | | | | | | Signed-off-by: Tim Van Steenburgh <tvansteenburgh@gmail.com> | |||||
| * | | Return bytes if object name can't be utf8-decoded | Tim Van Steenburgh | 2013-04-17 | 1 | -3/+7 | |
| | | | | | | | | | | | | Signed-off-by: Tim Van Steenburgh <tvansteenburgh@gmail.com> | |||||
| * | | [#6078] #102 Work-around mergetag blocks by ignoring them | Cory Johns | 2013-04-11 | 1 | -1/+8 | |
| | | | ||||||
| * | | Fixed parse_actor_and_date with mangled tags | Igor Bondarenko | 2013-02-14 | 1 | -1/+7 | |
| | | | ||||||
* | | | GPG signature support on commit object. | Max Rasskazov | 2014-09-08 | 1 | -17/+36 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Originals: Pull request "GPG signature support on commit object" #124 by Tatsuki Sugiura. https://github.com/gitpython-developers/GitPython/pull/124 commit 8065d2abdbb18e09560fc061807301b4c834d5a7 commit 62ecd6c66a84144632b045696326af503ee8cd4e | |||||
* | | | Make sure that branches looking like a numeric scalar will not become number ↵ | Sebastian Thiel | 2014-05-01 | 1 | -1/+1 | |
| |/ |/| | | | | | | | | | type in python. The latter will break code that assumes it will get a string. | |||||
* | | tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵ | Sebastian Thiel | 2014-02-09 | 10 | -2627/+2627 | |
|/ | | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) ) | |||||
* | Submodule now uses a specialized method to remove its trees to allow ↵ | Sebastian Thiel | 2011-06-13 | 1 | -5/+4 | |
| | | | | read-only files to be removed on windows as well | |||||
* | Making comparisons with non-GitPython objects more tolerant. | Julien Miotte | 2011-05-19 | 1 | -0/+4 | |
| | ||||||
* | added test & fix for mangled tagger names | Orestis Markou | 2011-05-01 | 1 | -1/+1 | |
| |