-
-
Notifications
You must be signed in to change notification settings - Fork 403
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
add initial support for Git protocol v2 #1244
Merged
Merged
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2b975ec
add initial support for Git protocol v2
stspdotname e543e98
keep dulwich pull command line similar to the Git CLI; suggested by J…
stspdotname 26344f8
use None to represent unspecified optional parameters; suggested by J…
stspdotname 325de7d
make the Git protocol version configurable from the command line
stspdotname 2400933
make Git protocol v2 work over SSH connections
stspdotname 2647c58
use dict() instead of deepcopy()
stspdotname 65220bb
emulate Git's behaviour when a server does not support object filtering
stspdotname 343ed68
set the default git protocol version via global constants
stspdotname 5c1a5ec
don't hard-code protocol v2 and tweak version comparisons to be futur…
stspdotname 5b2f74f
skip test_fetch_pack_no_side_band_64k if git protocol v2 is used
stspdotname 0e18ede
run client compat tests with git protocol version 0, too
stspdotname f270f0c
blind attempt at fixing the unexpected-success "failures" on windows CI
stspdotname File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
set the default git protocol version via global constants
- Loading branch information
commit 343ed68cdeb65d9a47851702cfd38f4cec8e2629
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there actually a version 1? Can you add a comment about these versions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I am adding comments in the next version.
They will appear in an earlier commit which adds this list.
I have rewritten history a bit, also to get rid of the 'ruff format' commit in the middle.