-
Notifications
You must be signed in to change notification settings - Fork 66
Doesn't work dereference of sha1 to object. #2
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
Comments
Unfortunately this is only a partial stack trace, hence it does not help. |
Ok, that is full stack trace:
I use GitPython-0.3.2.RC1, Python 2.7 and Ubuntu 12.04. |
You have a rather big index (~65MB), but use gitpython on a 32 bit system. This means it will map only 32 MB chunks at once into memory. On a 64 bit system, it would use up to 1024 MB per mapping. |
Thanks for your answer. |
When I use 64 bit sistem, my programm works up to 15th commit, but then
And what does "window size" mean and how it can be edited? |
It seems that it parsed the commit's encoding incorrectly, as it has a hash string in a place where something like UTF-8 would be expected. Therefore the author's name cannot be encoded. As a general workaround, you can just use a different Repository backend. It defaults to gitdb, but you may use GitCmd as well. Please have a look at the git.repo module on how to do that. |
Then I try to use the program from here https://bitbucket.org/eugeneai/linux-project.git, Python returns this message:
The text was updated successfully, but these errors were encountered: