diff options
Diffstat (limited to 'vendor/gopkg.in/src-d/go-git.v4/options.go')
-rw-r--r-- | vendor/gopkg.in/src-d/go-git.v4/options.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vendor/gopkg.in/src-d/go-git.v4/options.go b/vendor/gopkg.in/src-d/go-git.v4/options.go index a3b14fe2de..0f728e7c27 100644 --- a/vendor/gopkg.in/src-d/go-git.v4/options.go +++ b/vendor/gopkg.in/src-d/go-git.v4/options.go @@ -186,6 +186,9 @@ type PushOptions struct { // Progress is where the human readable information sent by the server is // stored, if nil nothing is stored. Progress sideband.Progress + // Prune specify that remote refs that match given RefSpecs and that do + // not exist locally will be removed. + Prune bool } // Validate validates the fields and sets the default values. |