aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/protocol/packp
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-09-01 17:28:42 +0200
committerGitHub <noreply@github.com>2017-09-01 17:28:42 +0200
commitc20028f6a4d0038d59898392aafe13baa9e84040 (patch)
tree49407f8b3b5aaef1c6a56363bdb1fc25cd56f5cb /plumbing/protocol/packp
parent8ce9f5f240730ce21f50e42409d17fac7d71e051 (diff)
parent76efca13092ba245caf15f232f467e68fa1f73ed (diff)
downloadgo-git-c20028f6a4d0038d59898392aafe13baa9e84040.tar.gz
Merge pull request #573 from orirawlings/pushSideband
Add sideband support for push
Diffstat (limited to 'plumbing/protocol/packp')
-rw-r--r--plumbing/protocol/packp/updreq.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/plumbing/protocol/packp/updreq.go b/plumbing/protocol/packp/updreq.go
index b246613..73be117 100644
--- a/plumbing/protocol/packp/updreq.go
+++ b/plumbing/protocol/packp/updreq.go
@@ -6,6 +6,7 @@ import (
"gopkg.in/src-d/go-git.v4/plumbing"
"gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/capability"
+ "gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/sideband"
)
var (
@@ -21,6 +22,9 @@ type ReferenceUpdateRequest struct {
Shallow *plumbing.Hash
// Packfile contains an optional packfile reader.
Packfile io.ReadCloser
+
+ // Progress receives sideband progress messages from the server
+ Progress sideband.Progress
}
// New returns a pointer to a new ReferenceUpdateRequest value.