Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs137-24sp
git
Commits
c70e6995
Commit
c70e6995
authored
10 months ago
by
Yaksher
Committed by
Ilana Hejna
10 months ago
Browse files
Options
Download
Email Patches
Plain Diff
Fix stale links in transport.h
parent
31512167
master
No related merge requests found
Pipeline
#103564
passed with stage
in 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/transport.h
+3
-3
include/transport.h
with
3 additions
and
3 deletions
+3
-3
include/transport.h
View file @
c70e6995
/*
* The git protocol is described at https://github.com/git/git/blob/master/Documentation/
technical/pack-protocol.txt#L103.
* The git protocol is described at https://github.com/git/git/blob/master/Documentation/
gitprotocol-pack.txt
* Fetching consists of several stages:
* - The client opens an SSH connection to the server.
* Call open_transport(FETCH, ...) to initiate this SSH connection.
...
...
@@ -25,7 +25,7 @@
* Once the server returns that it is ready (or the client knows no more of its commits
* are common with the server), call finish_haves().
* - The server figures out what needs to be sent to the client and sends a PACK file.
* This format is documented at https://github.com/git/git/blob/master/Documentation/
technical/pack-
format.txt
.
* This format is documented at https://github.com/git/git/blob/master/Documentation/
git
format
-pack
.txt
* The file contains all the new objects (commits, trees, etc.) that the client needs.
* Call receive_pack() to handle each object received from the server.
*
...
...
@@ -122,7 +122,7 @@ void finish_haves(transport_t *);
/**
* The types of objects which can be received in a PACK file.
* See https://github.com/git/git/blob/master/Documentation/
technical/pack-
format.txt
.
* See https://github.com/git/git/blob/master/Documentation/
git
format
-pack
.txt
*
* `OBJ_REF_DELTA` is a special type indicating an object that is constructed
* from sections of another object. See the link above for the format.
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help