aboutsummaryrefslogtreecommitdiffstats
path: root/example_test.go
diff options
context:
space:
mode:
authorkuba-- <kuba@sourced.tech>2018-04-18 10:35:07 +0200
committerkuba-- <kuba@sourced.tech>2018-04-18 15:25:28 +0200
commit6b33126e79695b499d7d519f69db4ca1ebd22dd1 (patch)
treedafcbe0c3c76881e7066c8505a8cdbf92be9f8ec /example_test.go
parentb30763cb64afa91c016b23e905af0a378eb1b76d (diff)
downloadgo-git-6b33126e79695b499d7d519f69db4ca1ebd22dd1.tar.gz
git: worktree, Skip special git directory. Fixes #814
Signed-off-by: kuba-- <kuba@sourced.tech>
Diffstat (limited to 'example_test.go')
-rw-r--r--example_test.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/example_test.go b/example_test.go
index e9d8e8b..ef7e3d3 100644
--- a/example_test.go
+++ b/example_test.go
@@ -24,12 +24,18 @@ func ExampleClone() {
// Clones the repository into the worktree (fs) and storer all the .git
// content into the storer
- _, _ = git.Clone(storer, fs, &git.CloneOptions{
+ _, err := git.Clone(storer, fs, &git.CloneOptions{
URL: "https://github.com/git-fixtures/basic.git",
})
+ if err != nil {
+ log.Fatal(err)
+ }
// Prints the content of the CHANGELOG file from the cloned repository
- changelog, _ := fs.Open("CHANGELOG")
+ changelog, err := fs.Open("CHANGELOG")
+ if err != nil {
+ log.Fatal(err)
+ }
io.Copy(os.Stdout, changelog)
// Output: Initial changelog