diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-31 23:09:28 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-31 23:09:52 +0100 |
commit | a6197bd8c459c7d10717bd9486c17f6c8b3f7f88 (patch) | |
tree | 63180ec210c66fda317c87197d2f6bab508406b6 /remote.go | |
parent | 2308066c28d3cbbfb472fb634c3e10a1c7786cfc (diff) | |
download | go-git-a6197bd8c459c7d10717bd9486c17f6c8b3f7f88.tar.gz |
documentation changes
Diffstat (limited to 'remote.go')
-rw-r--r-- | remote.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -54,12 +54,12 @@ func (r *Remote) Fetch(o *FetchOptions) error { // Push performs a push to the remote. Returns NoErrAlreadyUpToDate if the // remote was already up-to-date. -// -// TODO: Support deletes. -// TODO: Support pushing tags. -// TODO: Check if force update is given, otherwise reject non-fast forward. -// TODO: Sideband support func (r *Remote) Push(o *PushOptions) (err error) { + // TODO: Support deletes. + // TODO: Support pushing tags. + // TODO: Check if force update is given, otherwise reject non-fast forward. + // TODO: Sideband suppor + if o.RemoteName == "" { o.RemoteName = r.c.Name } |