summaryrefslogtreecommitdiff
path: root/git/objects/commit.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed io types to make tests work on PY2 once again.py3Sebastian Thiel2015-01-051-3/+3
| | | | Now it's about going through PY3 issues
* Dum brute force conversion of all types.Sebastian Thiel2015-01-041-3/+4
| | | | | | 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 Thiel2015-01-041-8/+7
| | | | More to come, especially when it's about strings
* Replaced ordered dict with standard version; used logging moduleSebastian Thiel2015-01-041-6/+8
| | | | All performance tests still print to stderr, but do so in a py3 compatible way
* Bumped version, updated changelog, reduced code smellSebastian Thiel2015-01-041-2/+2
| | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements
* Applied autopep8Sebastian Thiel2014-11-191-26/+29
| | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
* Assure API remains backwards compatible; update API docsSebastian Thiel2014-11-171-2/+4
|
* Merge branch '0.3' of https://github.com/firm1/GitPython into firm1-0.3Sebastian Thiel2014-11-171-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_treefirm12014-03-241-3/+8
| |
* | pep8 linting (trailing whitespace)Antoine Musso2014-11-161-33/+33
| | | | | | | | W291 trailing whitespace
* | pep8 linting (whitespace before/after)Antoine Musso2014-11-161-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | 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 Musso2014-11-161-4/+2
| | | | | | | | | | | | E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n)
* | pep8 linting (whitespaces)Antoine Musso2014-11-161-49/+49
| | | | | | | | | | | | | | | | | | | | | | 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 Thiel2014-11-151-3/+14
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 commitsCory Johns2014-03-041-1/+1
| | |
| * | [#7021] Added serialization and test from upstream and fixed test issuesCory Johns2014-03-031-0/+5
| | |
| * | [#7021] ticket:533 fixed error with pgp signed commitsYuriy Arhipov2014-02-241-10/+26
| | |
| * | [#5330] Fixed has_attr typoCory Johns2013-10-171-1/+1
| | |
| * | [#5330] Ensure wait() is called on git processesCory Johns2013-10-091-0/+3
| | |
| * | [#6078] #102 Work-around mergetag blocks by ignoring themCory Johns2013-04-111-1/+8
| | |
* | | GPG signature support on commit object.Max Rasskazov2014-09-081-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
* | tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel2014-02-091-432/+432
|/ | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* Commit.create_from_tree used a now renamed keyword parameter - no test-case ↵Sebastian Thiel2010-11-261-1/+1
| | | | ever runs this code, which is still an issue
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+465
adjusted