Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Sphinx rendering errors | Stephan Creutz | 2022-12-29 | 1 | -1/+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 Thiel | 2022-05-18 | 1 | -6/+2 |
| | |||||
* | Run everything through 'black' | Sebastian Thiel | 2022-05-18 | 1 | -21/+37 |
| | | | | | That way people who use it won't be deterred, while it unifies style everywhere. | ||||
* | replace some TBDs wiht runtime types | Yobmod | 2021-07-31 | 1 | -1/+1 |
| | |||||
* | cleanup | Yobmod | 2021-07-31 | 1 | -1/+1 |
| | |||||
* | Add type to symbolicreference.set_object() | Yobmod | 2021-07-31 | 1 | -2/+2 |
| | |||||
* | Fix more missing types in Symbolic.py, cos GuthubActions pytest stuck | Yobmod | 2021-07-28 | 1 | -1/+3 |
| | |||||
* | Replace all Typeguard with cast, revert update to typing-extensions==3.10.0 | Yobmod | 2021-07-24 | 1 | -1/+1 |
| | |||||
* | Add types to refs/reference.py | Yobmod | 2021-07-19 | 1 | -12/+25 |
| | |||||
* | Make IterableList generic and update throughout | Yobmod | 2021-06-24 | 1 | -2/+2 |
| | |||||
* | add initial types to remote.py | yobmod | 2021-05-03 | 1 | -2/+2 |
| | |||||
* | Rewrite unnecessary dict/list/tuple calls as literals | Hugo | 2018-03-18 | 1 | -1/+1 |
| | |||||
* | Fix some typos | Santiago Castro | 2016-10-20 | 1 | -1/+1 |
| | |||||
* | src: No PyDev warnings | Kostis Anagnostopoulos | 2016-10-04 | 1 | -1/+1 |
| | | | | | | | | + Mark all unused vars and other non-pep8 (PyDev) warnings + test_utils: + enable & fix forgotten IterableList looped path. + unittestize all assertions. + remote: minor fix progress dispatching unknown err-lines | ||||
* | Added advance usage examples to tutorial and made minor fixes. | Sebastian Thiel | 2015-01-21 | 1 | -1/+4 |
| | | | | | | GIT_PYTHON_TRACE would actually fail (now) if we debugged archive operations. Related to #239 | ||||
* | initial set of adjustments to make (most) imports work. | Sebastian Thiel | 2015-01-04 | 1 | -1/+2 |
| | | | | More to come, especially when it's about strings | ||||
* | Bumped version, updated changelog, reduced code smell | Sebastian Thiel | 2015-01-04 | 1 | -5/+0 |
| | | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements | ||||
* | Applied autopep8 | Sebastian Thiel | 2014-11-19 | 1 | -10/+10 |
| | | | | | 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 | 1 | -1/+1 |
| | | | | | | Based on the functionality proposed in https://github.com/gitpython-developers/GitPython/pull/101 [ci skip] | ||||
* | pep8 linting (trailing whitespace) | Antoine Musso | 2014-11-16 | 1 | -5/+5 |
| | | | | W291 trailing whitespace | ||||
* | pep8 linting (whitespace before/after) | Antoine Musso | 2014-11-16 | 1 | -4/+4 |
| | | | | | | | | | | | | | 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 | 1 | -2/+4 |
| | | | | | | 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 | 1 | -13/+13 |
| | | | | | | | | | | | 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 | 1 | -108/+108 |
|/ | | | | 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 | 1 | -0/+41 |
| | | | | 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 | ||||
* | Moved everything into the git subdirectory - some tests still need to be ↵ | Sebastian Thiel | 2010-11-25 | 1 | -0/+84 |
adjusted |