diff options
Diffstat (limited to 'plumbing/protocol/packp/common.go')
-rw-r--r-- | plumbing/protocol/packp/common.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plumbing/protocol/packp/common.go b/plumbing/protocol/packp/common.go index 3d7786b..c8db931 100644 --- a/plumbing/protocol/packp/common.go +++ b/plumbing/protocol/packp/common.go @@ -15,6 +15,7 @@ var ( // common sp = []byte(" ") eol = []byte("\n") + eq = []byte{'='} // advrefs null = []byte("\x00") @@ -28,4 +29,7 @@ var ( deepenCommits = []byte("deepen ") deepenSince = []byte("deepen-since ") deepenReference = []byte("deepen-not ") + + // updreq + shallowNoSp = []byte("shallow") ) |