blob: 7a2ebd367d4ad8de27cc7b1267c2944ae4df90c7 (
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
|
package main
import (
"fmt"
"os"
git "github.com/go-git/go-git/v5"
. "github.com/go-git/go-git/v5/_examples"
"github.com/go-git/go-git/v5/plumbing/transport/ssh"
)
func main() {
CheckArgs("<url>", "<directory>")
url, directory := os.Args[1], os.Args[2]
authMethod, err := ssh.NewSSHAgentAuth("git")
CheckIfError(err)
// Clone the given repository to the given directory
Info("git clone %s ", url)
r, err := git.PlainClone(directory, false, &git.CloneOptions{
Auth: authMethod,
URL: url,
Progress: os.Stdout,
})
CheckIfError(err)
// ... retrieving the branch being pointed by HEAD
ref, err := r.Head()
CheckIfError(err)
// ... retrieving the commit object
commit, err := r.CommitObject(ref.Hash())
CheckIfError(err)
fmt.Println(commit)
}
|