blob: 9174588cc8d6e2560e0ba28c1c572c9b1a1bd4cc (
plain) (
tree)
|
|
package main
import (
"fmt"
"os"
"srcd.works/go-git.v4"
. "srcd.works/go-git.v4/_examples"
)
// Open an existing repository in a specific folder.
func main() {
CheckArgs("<path>")
path := os.Args[1]
// We instance a new repository targeting the given path (the .git folder)
r, err := git.PlainOpen(path)
CheckIfError(err)
// Length of the HEAD history
Info("git rev-list HEAD --count")
// ... retrieving the HEAD reference
ref, err := r.Head()
CheckIfError(err)
// ... retrieving the commit object
commit, err := r.Commit(ref.Hash())
CheckIfError(err)
// ... calculating the commit history
commits, err := commit.History()
CheckIfError(err)
fmt.Println(len(commits))
}
|