Push performs a push to the remote. Returns NoErrAlreadyUpToDate if the remote was already up-to-date, from the remote named as FetchOptions.RemoteName.
(o *PushOptions)
| 1221 | // the remote was already up-to-date, from the remote named as |
| 1222 | // FetchOptions.RemoteName. |
| 1223 | func (r *Repository) Push(o *PushOptions) error { |
| 1224 | return r.PushContext(context.Background(), o) |
| 1225 | } |
| 1226 | |
| 1227 | // PushContext performs a push to the remote. Returns NoErrAlreadyUpToDate if |
| 1228 | // the remote was already up-to-date, from the remote named as |
nothing calls this directly
no test coverage detected