summaryrefslogtreecommitdiff
path: root/git/refs/log.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix Sphinx rendering errorsStephan Creutz2022-12-291-0/+2
| | | | | | | | These errors are mostly fixed by either adding blank lines or single spaces for Sphinx documentation key words. The commit solely includes documentation changes, no functional changes.
* reformat according to 'black' configuration file.Sebastian Thiel2022-05-181-13/+4
|
* Run everything through 'black'Sebastian Thiel2022-05-181-47/+70
| | | | | That way people who use it won't be deterred, while it unifies style everywhere.
* Add type to refs.log._read_from_file()Yobmod2021-07-311-1/+1
|
* Add types to refs/log.pyYobmod2021-07-191-54/+86
|
* replace cast()s with asserts in remote.pyYobmod2021-06-251-6/+6
|
* flake8 and mypy fixesYobmod2021-05-161-2/+2
|
* Remove now unnecessary explicit Unicode string literal prefixesHarmon2020-02-251-7/+7
|
* Remove and replace compat.string_typesHarmon2020-02-081-5/+2
|
* Remove checks for Python 2 and/or 3Harmon2020-02-081-7/+1
|
* Remove and replace compat.xrangeHarmon2020-02-081-2/+1
|
* removed extra line as per code reviewAnil Khatri2019-10-281-1/+0
|
* silence PYL-W0621Anil Khatri2019-10-241-4/+2
|
* silance Re-defined variable from outer scopeAnil Khatri2019-10-241-8/+10
|
* resolved all minor issues arised by last fix patchAnil Khatri2019-10-231-23/+22
|
* fix File opened without the with statementAnil Khatri2019-10-231-17/+18
|
* fix Loop variable used outside the loopAnil Khatri2019-10-231-1/+1
|
* fixed classmethod argument PYL-C0202Anil Khatri2019-10-221-1/+1
|
* removed Unnecessary “else” after “return”Pratik Anurag2019-10-151-4/+3
|
* Use automatic formattersHugo2018-03-181-7/+7
|
* Rewrite unnecessary dict/list/tuple calls as literalsHugo2018-03-181-1/+1
|
* RF: primarily flake8 lints + minor RF to reduce duplication in PATHEXTYaroslav Halchenko2017-11-271-1/+1
| | | | | I did keep some "bare" except with catch all Exception: , while tried to disable flake8 complaints where clearly all exceptions are to be catched
* Spelling fixesVille Skyttä2017-03-091-2/+2
|
* src: reduce needless deps to `gitdb.util`Kostis Anagnostopoulos2016-10-161-19/+17
|
* Fix corruption of the ref logs fileBarry Scott2016-06-131-2/+3
| | | | | It must only have the first line of the commit messages, not the while multiple line log.
* Made improvements to assure test-cases don't leak file handlesSebastian Thiel2015-01-071-0/+1
| | | | | | | | At least leakage is considerably reduced. Additionally, a test-case was added which triggers failure if auto-disposal of resources wouldn't work. Fixes #60
* Made sure commits accept unicode or unicode charactersSebastian Thiel2015-01-071-3/+14
|
* fix pep8firm12015-01-071-2/+8
|
* add support of utf8firm12015-01-071-5/+2
|
* Fixed log implementation for py3Sebastian Thiel2015-01-061-0/+1
| | | | When merging, I accidentally removed the py3 adjustments
* Merge branch 'py3' into 0.3Sebastian Thiel2015-01-061-9/+17
|\ | | | | | | | | Conflicts: git/refs/log.py
| * Make flake8 happySebastian Thiel2015-01-061-1/+1
| |
| * test_reflog worksSebastian Thiel2015-01-061-9/+13
| |
| * Fixed io types to make tests work on PY2 once again.py3Sebastian Thiel2015-01-051-1/+1
| | | | | | | | Now it's about going through PY3 issues
| * Dum brute force conversion of all types.Sebastian Thiel2015-01-041-1/+5
| | | | | | | | | | | | However, StringIO really is ByteIO in most cases, and py2.7 should run but doesn't. This should be made work first.
* | BF: allow log line to have no msg (Close #225)Yaroslav Halchenko2015-01-051-5/+9
|/
* Bumped version, updated changelog, reduced code smellSebastian Thiel2015-01-041-4/+0
| | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements
* Another travis debugging commitSebastian Thiel2015-01-041-2/+0
|
* Intermediate debug commit for travis ... do not useSebastian Thiel2015-01-041-0/+2
|
* encode name of actor to utf-8Kenji Fujiwara2014-12-121-1/+2
|
* Applied autopep8Sebastian Thiel2014-11-191-34/+35
| | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
* Merge branch '0.3' of https://github.com/firm1/GitPython into firm1-0.3Sebastian Thiel2014-11-171-3/+5
|\ | | | | | | | | | | | | | | | | | | 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
| * correct log referencefirm12014-03-241-1/+1
| |
* | pep8 linting (trailing whitespace)Antoine Musso2014-11-161-14/+14
| | | | | | | | W291 trailing whitespace
* | pep8 linting (whitespace before/after)Antoine Musso2014-11-161-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | 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-0/+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-40/+40
|/ | | | | | | | | | | 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
* tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel2014-02-091-272/+272
| | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* Fixed critical issue that would cause a string to be passed to methods that ↵Sebastian Thiel2011-06-081-1/+1
| | | | expect a stream
* log: non-existing logs no longer throw an exception, but are ignored. Fixed ↵Sebastian Thiel2011-06-081-1/+7
| | | | 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 \!