diff options
Diffstat (limited to 'examples/basic')
-rw-r--r-- | examples/basic/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
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 |