Push performs a push to the remote. Returns NoErrAlreadyUpToDate if the remote was already up-to-date.
(o *PushOptions)
| 92 | // Push performs a push to the remote. Returns NoErrAlreadyUpToDate if the |
| 93 | // remote was already up-to-date. |
| 94 | func (r *Remote) Push(o *PushOptions) error { |
| 95 | return r.PushContext(context.Background(), o) |
| 96 | } |
| 97 | |
| 98 | // PushContext performs a push to the remote. Returns NoErrAlreadyUpToDate if |
| 99 | // the remote was already up-to-date. |