blob: f5a1c8a8a099f36ff4fd9e77c487f38cb5b0d2d4 (
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"
"io"
"os"
"gopkg.in/src-d/go-git.v3"
)
func main() {
fmt.Printf("Retrieving %q ...\n", os.Args[1])
r, err := git.NewRepository(os.Args[1], nil)
if err != nil {
panic(err)
}
if err := r.PullDefault(); err != nil {
panic(err)
}
iter := r.Commits()
defer iter.Close()
for {
//the commits are not shorted in any special order
commit, err := iter.Next()
if err != nil {
if err == io.EOF {
break
}
panic(err)
}
fmt.Println(commit)
}
}
|