- Description:
- Pure Python Git implementation: www.dulwich.io
- Last Change:
- Clone URL:
ssh://anonymous@git.chirpysoft.be/dulwich.git
Commit Briefs
skip test_fetch_pack_no_side_band_64k if git protocol v2 is used
Git protocol v2 implies the side-band-64k capability so this test is meaningless in that case.
don't hard-code protocol v2 and tweak version comparisons to be future-proof
Based on a suggestion by Jelmer
emulate Git's behaviour when a server does not support object filtering
Git prints a warning and proceeds with an unfiltered clone/fetch operation. Make dulwich behave the same way, for now.
use dict() instead of deepcopy()
suggested by Jelmer