aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-08-15 23:33:47 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-08-15 23:33:47 +0200
commitf7ec0637a509b063831d0f57e13840aff9a6d748 (patch)
tree66244f62a8b44b4be5930989467bd6f6c62c9a0a /examples
parent6b9a59be60de5b66aee14e9160ace80734008eca (diff)
downloadgo-git-f7ec0637a509b063831d0f57e13840aff9a6d748.tar.gz
NewFilesystemRepository and example
Diffstat (limited to 'examples')
-rw-r--r--examples/open/main.go40
1 files changed, 40 insertions, 0 deletions
diff --git a/examples/open/main.go b/examples/open/main.go
new file mode 100644
index 0000000..fa11844
--- /dev/null
+++ b/examples/open/main.go
@@ -0,0 +1,40 @@
+package main
+
+import (
+ "fmt"
+ "os"
+ "path/filepath"
+
+ "gopkg.in/src-d/go-git.v4"
+)
+
+func main() {
+ path, _ := filepath.Abs(os.Args[1])
+ fmt.Printf("Opening repository %q ...\n", path)
+
+ r, err := git.NewFilesystemRepository(path)
+ if err != nil {
+ panic(err)
+ }
+
+ iter, err := r.Commits()
+ if err != nil {
+ panic(err)
+ }
+
+ defer iter.Close()
+
+ var count = 0
+ err = iter.ForEach(func(commit *git.Commit) error {
+ count++
+ fmt.Println(commit)
+
+ return nil
+ })
+
+ if err != nil {
+ panic(err)
+ }
+
+ fmt.Println("total commits:", count)
+}