From 58fe211f1b0e4863b425542d2fad15803276fd66 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Sun, 11 Sep 2016 20:35:06 +0200 Subject: format: packfile fix ReadObjectAt without decode --- examples/basic/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/basic') diff --git a/examples/basic/main.go b/examples/basic/main.go index 1d59a6b..d92002a 100644 --- a/examples/basic/main.go +++ b/examples/basic/main.go @@ -10,7 +10,7 @@ import ( ) func main() { - r := git.NewMemoryRepository() + r, _ := git.NewFilesystemRepository(".git") // Clone the given repository, creating the remote, the local branches // and fetching the objects, exactly as: @@ -28,8 +28,8 @@ func main() { // ... retrieving the branch being pointed by HEAD ref, _ := r.Head() // ... retrieving the commit object - commit, _ := r.Commit(ref.Hash()) - fmt.Println(commit) + commit, err := r.Commit(ref.Hash()) + fmt.Println(commit, err) // List the tree from HEAD // > git ls-tree -r HEAD -- cgit