aboutsummaryrefslogtreecommitdiffstats
path: root/remote.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-01-31 23:09:28 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2017-01-31 23:09:52 +0100
commita6197bd8c459c7d10717bd9486c17f6c8b3f7f88 (patch)
tree63180ec210c66fda317c87197d2f6bab508406b6 /remote.go
parent2308066c28d3cbbfb472fb634c3e10a1c7786cfc (diff)
downloadgo-git-a6197bd8c459c7d10717bd9486c17f6c8b3f7f88.tar.gz
documentation changes
Diffstat (limited to 'remote.go')
-rw-r--r--remote.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/remote.go b/remote.go
index 5ab71df..2d243e9 100644
--- a/remote.go
+++ b/remote.go
@@ -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
}