diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/log/main.go | 40 |
1 files changed, 40 insertions, 0 deletions
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) + } +} |