aboutsummaryrefslogtreecommitdiffstats
path: root/examples/latest/latest.go
blob: 84aaf48a44d2e727579fb72c7f226b9e13976fb0 (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
package main

import (
	"fmt"
	"os"

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

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

	if err := r.Pull(git.DefaultRemoteName, "refs/heads/master"); err != nil {
		panic(err)
	}

	hash, err := r.Remotes[git.DefaultRemoteName].Head()
	if err != nil {
		panic(err)
	}

	commit, err := r.Commit(hash)
	if err != nil {
		panic(err)
	}

	fmt.Println(commit)
}