diff options
author | Ori Rawlings <orirawlings@gmail.com> | 2017-08-23 21:37:49 -0500 |
---|---|---|
committer | Ori Rawlings <orirawlings@gmail.com> | 2017-09-01 09:17:23 -0500 |
commit | 76efca13092ba245caf15f232f467e68fa1f73ed (patch) | |
tree | e94ed3536e5af8d9201e83de9a7011ab5ac37dad /plumbing/protocol | |
parent | 3ca370277427c5d508f0dedacbd559523a305121 (diff) | |
download | go-git-76efca13092ba245caf15f232f467e68fa1f73ed.tar.gz |
Add sideband support for push
Diffstat (limited to 'plumbing/protocol')
-rw-r--r-- | plumbing/protocol/packp/updreq.go | 4 |
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. |