From 40875ee0df345468f36cb00d54820d622b37cbc5 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Tue, 13 Dec 2016 16:01:35 +0100 Subject: readme and log example (#181) * readme and log example * changes * changes --- examples/log/main.go | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 examples/log/main.go (limited to 'examples/log/main.go') diff --git a/examples/log/main.go b/examples/log/main.go new file mode 100644 index 0000000..6ab0bb7 --- /dev/null +++ b/examples/log/main.go @@ -0,0 +1,40 @@ +package main + +import ( + "fmt" + + "gopkg.in/src-d/go-git.v4" + . "gopkg.in/src-d/go-git.v4/examples" +) + +func main() { + // Instances an in-memory git repository + r := git.NewMemoryRepository() + + // Clones the given repository, creating the remote, the local branches + // and fetching the objects, exactly as: + Info("git clone https://github.com/src-d/go-siva") + + err := r.Clone(&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) + } +} -- cgit