aboutsummaryrefslogtreecommitdiffstats
path: root/examples/push/main.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 /examples/push/main.go
parent2308066c28d3cbbfb472fb634c3e10a1c7786cfc (diff)
downloadgo-git-a6197bd8c459c7d10717bd9486c17f6c8b3f7f88.tar.gz
documentation changes
Diffstat (limited to 'examples/push/main.go')
-rw-r--r--examples/push/main.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/push/main.go b/examples/push/main.go
deleted file mode 100644
index cfae064..0000000
--- a/examples/push/main.go
+++ /dev/null
@@ -1,20 +0,0 @@
-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)
-}