-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GitPython issues with packed-ref format in Git 2.15+ #65
Comments
Thanks for the heads-up! I'll keep track of the issue and bump the dependency when GitPython is updated. |
Until the update comes you can do |
I think that time is here. I'm now encountering this issue after an apt update on buntu 16.04. |
As far as I can see, no new version of GitPython has been released so far. As a workaround installing GitPython from master seems to work: $ pip install -U git+ssh://git@github.com/gitpython-developers/GitPython.git Can someone confirm this works? |
Confirmed, this works!
…On Thu, Nov 16, 2017 at 6:21 PM, Markus Siemens ***@***.***> wrote:
I think that time is here. I'm now encountering this issue after an apt
update on buntu 16.04.
As far as I can see, no new version of GitPython has been released so far.
As a workaround installing GitPython from master seems to work:
$ pip install -U ***@***.***/gitpython-developers/GitPython.git
Can someone confirm this works?
|
Here worked with this command: (the comand by @msiemens I got permission denied)
|
Alternative method: Clone repo git clone https://github.com/gitpython-developers/GitPython
cd GitPython
git submodule update --init --recursive
./init-tests-after-clone.sh Install GitPython
Install
|
See gitpython-developers/GitPython#704 about a new GitPython release. |
GitPython 2.18 is now out with the fix. |
Fix #65. GitPython 2.18 is now out with the required fix. gitpython-developers/GitPython#687 (comment)
As of Git 2.15 GitPython has some issues with the new format of packed-ref headers, resulting in PyGitUp crashing whenever doing a
git up
.See gitpython-developers/GitPython#687 and the PR gitpython-developers/GitPython#689. I'm guessing PyGitUp will need a version bump when a new GitPython version gets released.
The text was updated successfully, but these errors were encountered: