summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2017-01-20 00:46:34 +0000
committerCarlos Martín Nieto <[email protected]>2017-01-20 00:46:34 +0000
commitf0370741989f40b597c99e6093ce7fa0b1983397 (patch)
treef4124f42d79403e0ef20af1080ac3818604ce49c /README.md
parentb8a9efd21f5ea094976ff2c53c4aec1cf6014876 (diff)
parent5d0a4c752a74258a5f42e40fccd2908ac4e336b8 (diff)
Merge remote-tracking branch 'origin/next'
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/README.md b/README.md
index 315032f..bd918d6 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ to use a version of git2go which will work against libgit2 v0.22 and dynamically
import "github.com/libgit2/git2go"
-to use the version which works against the latest release.
+to use the 'master' branch, which works against the latest release of libgit2, whichever that one is at the time.
### From `next`
@@ -44,15 +44,14 @@ libgit2 uses OpenSSL and LibSSH2 for performing encrypted network connections. F
Running the tests
-----------------
-For the stable version, `go test` will work as usual. For the `next` branch, similarly to installing, running the tests requires linking against the local libgit2 library, so the Makefile provides a wrapper
+For the stable version, `go test` will work as usual. For the `next` branch, similarly to installing, running the tests requires building a local libgit2 library, so the Makefile provides a wrapper that makes sure it's built
make test
-Alternatively, if you want to pass arguments to `go test`, you can use the script that sets it all up
+Alternatively, you can build the library manually first and then run the tests
- ./script/with-static.sh go test -v
-
-which will run the specified arguments with the correct environment variables.
+ ./script/build-libgit2-static.sh
+ go test -v
License
-------