diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2021-11-01 22:52:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 22:52:38 +0100 |
commit | 3211a7a12a0ec2922d257fb14f09c6ecfb0b7c77 (patch) | |
tree | 667f1a41e4223ac6c255463500a05a6d8ceab349 /options.go | |
parent | ed3b10c0489949843abf071e3ce2697c0c65f26d (diff) | |
parent | e729edb00d36e9bd19f99dfa493984233b0dccfa (diff) | |
download | go-git-3211a7a12a0ec2922d257fb14f09c6ecfb0b7c77.tar.gz |
Merge pull request #399 from S-Bohn/add-push-options
Remote: PushOptions add push-options
Diffstat (limited to 'options.go')
-rw-r--r-- | options.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -228,6 +228,8 @@ type PushOptions struct { // FollowTags will send any annotated tags with a commit target reachable from // the refs already being pushed FollowTags bool + // PushOptions sets options to be transferred to the server during push. + Options map[string]string } // Validate validates the fields and sets the default values. |