We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dulwich doesn't support manyfiles: https://git-scm.com/docs/git-config#Documentation/git-config.txt-featuremanyFiles
manyfiles enables some features which make working with git faster in large repositories.
However, this enables version 4, which then crashes dulwich (see also issue #1061)
Also, due to index.skipHash=true, dulwich crashes when opening the index:
index.skipHash=true
File ".../lib/python3.10/site-packages/dulwich/pack.py", line 1440, in check_sha raise ChecksumMismatch(self.sha1.hexdigest(), sha_to_hex(stored)) dulwich.errors.ChecksumMismatch: Checksum mismatch: Expected 2580840b6abffb2b98771d0a69884a5afa388ec, got b'0000000000000000000000000000000000000000'
The text was updated successfully, but these errors were encountered:
PRs to add support would be very welcome. Happy to talk through designs if that would be useful.
Sorry, something went wrong.
No branches or pull requests
dulwich doesn't support manyfiles: https://git-scm.com/docs/git-config#Documentation/git-config.txt-featuremanyFiles
manyfiles enables some features which make working with git faster in large repositories.
However, this enables version 4, which then crashes dulwich (see also issue #1061)
Also, due to
index.skipHash=true
, dulwich crashes when opening the index:The text was updated successfully, but these errors were encountered: