aboutsummaryrefslogtreecommitdiffstats
path: root/examples/basic/main.go
blob: 510b39d74e1c4d062d84f868357afd475a4b9cc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package main

import (
	"fmt"
	"os"

	"gopkg.in/src-d/go-git.v4"
)

func main() {
	url := os.Args[1]
	fmt.Printf("Retrieving %q ...\n", url)
	r, err := git.NewMemoryRepository()
	if err != nil {
		panic(err)
	}

	if err = r.Clone(&git.RepositoryCloneOptions{URL: url}); err != nil {
		panic(err)
	}

	iter, err := r.Commits()
	if err != nil {
		panic(err)
	}

	defer iter.Close()

	var count = 0
	iter.ForEach(func(commit *git.Commit) error {
		count++
		fmt.Println(commit)

		return nil
	})

	fmt.Println("total commits:", count)
}