aboutsummaryrefslogtreecommitdiffstats
path: root/_examples/push/main.go
diff options
context:
space:
mode:
Diffstat (limited to '_examples/push/main.go')
-rw-r--r--_examples/push/main.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/_examples/push/main.go b/_examples/push/main.go
new file mode 100644
index 0000000..cfae064
--- /dev/null
+++ b/_examples/push/main.go
@@ -0,0 +1,20 @@
+package main
+
+import (
+ "os"
+
+ "srcd.works/go-git.v4"
+ . "srcd.works/go-git.v4/examples"
+)
+
+func main() {
+ CheckArgs("<repository-path>")
+ path := os.Args[1]
+
+ r, err := git.PlainOpen(path)
+ CheckIfError(err)
+
+ Info("git push")
+ err = r.Push(&git.PushOptions{})
+ CheckIfError(err)
+}