diff options
author | kuba-- <kuba@sourced.tech> | 2018-04-18 10:35:07 +0200 |
---|---|---|
committer | kuba-- <kuba@sourced.tech> | 2018-04-18 15:25:28 +0200 |
commit | 6b33126e79695b499d7d519f69db4ca1ebd22dd1 (patch) | |
tree | dafcbe0c3c76881e7066c8505a8cdbf92be9f8ec /example_test.go | |
parent | b30763cb64afa91c016b23e905af0a378eb1b76d (diff) | |
download | go-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.go | 10 |
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 |