blob: eded36060866b10cd84934a01127ac95f17c4885 (
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
39
|
package main
import (
"fmt"
"srcd.works/go-git.v4"
. "srcd.works/go-git.v4/_examples"
"srcd.works/go-git.v4/storage/memory"
)
func main() {
// Clones the given repository, creating the remote, the local branches
// and fetching the objects, everything in memory:
Info("git clone https://github.com/src-d/go-siva")
r, err := git.Clone(memory.NewStorage(), nil, &git.CloneOptions{
URL: "https://github.com/src-d/go-siva",
})
CheckIfError(err)
// Gets the HEAD history from HEAD, just like does:
Info("git log")
// ... retrieves the branch pointed by HEAD
ref, err := r.Head()
CheckIfError(err)
// ... retrieves the commit object
commit, err := r.Commit(ref.Hash())
CheckIfError(err)
// ... retrieves the commit history
history, err := commit.History()
CheckIfError(err)
// ... just iterates over the commits, printing it
for _, c := range history {
fmt.Println(c)
}
}
|