GitPython icon indicating copy to clipboard operation
GitPython copied to clipboard

GitPython is a python library used to interact with Git repositories.

Results 171 GitPython issues
Sort by recently updated
recently updated
newest added

Compare how stock git does it (related: there was this noise about security issue of having case-insensitive filesystems and .Git file in a repo): ``` $> rm -rf /tmp/123; mkdir...

acknowledged

### Tested on GitPython version: 1.0.2 Windows: Server 2012 Git: 2.7.0.windows ### To reproduce ``` python import os import shutil from git import Repo path_to_repo = 'somepath' r = Repo.init(path_to_repo)...

acknowledged
tag.Windows
tag.leaks

Possibly related #583, #145 Initially noted while adding progress reporting in datalad: https://github.com/datalad/datalad/pull/2876 where I have not observed it properly (python2) and @kyleam said that he sees them nicely (but...

acknowledged

Hello, on windows when the path passed as an argument given to index.add contains a `[`, the function just return an empty list, whether or not the path exists. ```...

acknowledged
help wanted

Is it possible to change the default behavior of `GIT_PYTHON_TRACE=full` to use log level debug instead of INFO? It is nice to have this trace on logging, but I would...

acknowledged

I see these imports of unittest in - https://github.com/gitpython-developers/GitPython/blob/a8591a094a768d73e6efb5a698f74d354c989291/git/objects/submodule/base.py#L6 - https://github.com/gitpython-developers/GitPython/blob/f3265bd8beb017890699d093586126ff8af4a3fe/git/util.py#L17 I generally think that test code should not be built into the business logic. Is there a reason why...

acknowledged

So, I can call: `git.Repo.clone_from(repo, path)` and this raises a very helpful GitCommandError exception with the stderr. But, if I pass the progress parameter: `git.Repo.clone_from(repo, path, progress_func)` this also raises...

acknowledged
help wanted

While configuring a working application to be run via a Windows Service (Windows 7) ( via nssm ), the application was failing (only when ran as a Windows Service) with:...

acknowledged
help wanted

Original issue/record in DataLad: https://github.com/datalad/datalad/issues/2550 We have been running into this occasional crash across a variety of our unittests, never had time to look in detail, especially since it is...

acknowledged

I am seeing following error during repo.index.commit. OSError: Reference at 'refs/heads/master' does already exist, pointing to u'f746fc427841706fd2ba4302b99c7ae6eb135ab8', requested was 'f428c16e68aa324f24e222269c95f5c24a38db43' After this error, file has been committed to this repository,...

acknowledged
help wanted