aboutsummaryrefslogtreecommitdiffstats
path: root/_examples/push/main.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-03-01 17:39:56 +0100
committerGitHub <noreply@github.com>2017-03-01 17:39:56 +0100
commitd105e15d91e7553d9d40d6e9fffe0a5008cf8afe (patch)
tree3fbafa48a960575f9419392c5626de7951a6eda9 /_examples/push/main.go
parentf0affc5579ec907c3092b125ff35b0359b8c4e49 (diff)
parentd24ea4984ce6871ea24eb376325082602c766295 (diff)
downloadgo-git-d105e15d91e7553d9d40d6e9fffe0a5008cf8afe.tar.gz
Merge pull request #293 from ajnavarro/improvement/examples
_examples: improve documentation (fix #238)
Diffstat (limited to '_examples/push/main.go')
-rw-r--r--_examples/push/main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/_examples/push/main.go b/_examples/push/main.go
index aaec5a3..809c26b 100644
--- a/_examples/push/main.go
+++ b/_examples/push/main.go
@@ -7,6 +7,8 @@ import (
. "srcd.works/go-git.v4/_examples"
)
+// Example of how to open a repository in a specific path, and push to
+// its default remote (origin).
func main() {
CheckArgs("<repository-path>")
path := os.Args[1]
@@ -15,6 +17,7 @@ func main() {
CheckIfError(err)
Info("git push")
+ // push using default options
err = r.Push(&git.PushOptions{})
CheckIfError(err)
}