GitPython
GitPython copied to clipboard
GitPython is a python library used to interact with Git repositories.
The first example code in the tutorial is very unclear: ```python from git import Repo # rorepo is a Repo instance pointing to the git-python repository. # For all you...
Not sure if this is specifically realted to UNC paths or not, but here is what I'm observing. Clone a repo from a networked server to your local machine. Then:...
It'd be nice to have a method or hook where one could define clean-up actions on a RemoteProgress indicator. The `update()` method allows one to update progress info, but there's...
The fe5289ed introduced the `Tree.__contains__` [behaviour](https://github.com/gitpython-developers/GitPython/blob/ac4f7d3/git/objects/tree.py#L313) [change](https://github.com/gitpython-developers/GitPython/commit/fe5289ed8311fecf39913ce3ae86b1011eafe5f7#diff-7a54419817a1926c0ca853b6070bbe33L239), which is inconsistent with `Tree.__getitem__` behaviour. I couldn't find a proper explanation for a such change, so it looks like a bug for...
gitpython version: 2.1.8 git version: 1.8.3.1 python version: 2.7.5 I'm using REL7. This is not an issue in REL6 (not sure if I should post here or somewhere else...) To...
I suspect the culprit of the crash is the GIT_AUTHOR_DATE. If I remove this before starting my script it works. I already pass `expand_vars=False`, but that isn't passed far enough...
[Here](https://github.com/gitpython-developers/GitPython/blob/master/git/diff.py#L165), in comments five types described (not sure that this comment needed because same info in docstring), but [below](https://github.com/gitpython-developers/GitPython/blob/master/git/diff.py#L170) six types in change_type, in docstring [here](https://github.com/gitpython-developers/GitPython/blob/master/git/diff.py#L180) 5 types and [here](https://github.com/gitpython-developers/GitPython/blob/master/git/diff.py#L190)...
Fetch prune fails if HEAD ends up dangling. Given that the message appears more warning like in nature, as opposed to an error, should GitPython handle this/ignore it? To reproduce...
https://deepsource.io/gh/gitpython-developers/GitPython
Hi! I'm currently packaging gitpython for Arch Linux and am about to update to version 3.0.2. However, during packaging, I tried to run the tests and many of them fail...