summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuhaib Mujahid <[email protected]>2020-03-23 21:05:30 -0400
committerlhchavez <[email protected]>2020-03-23 18:22:12 -0700
commit3a2102638d64cd76e50f51577e8bb2b8f9c7035f (patch)
tree86e78cab7948ed99135390a1e16f28725de79624
parent2b66c0f9e75261ac678d08d45e86615fece82dad (diff)
Update README.md
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index 00fc4af..abcb4dd 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,11 @@ Due to the fact that Go 1.11 module versions have semantic meaning and don't nec
| 0.28 | v28 |
| 0.27 | v27 |
-You can import them in your project via `go get` or a regular `import` with the version number as a suffix. For example, if you have libgit2 v0.99 installed, you'd import with
+You can import them in your project with the version's major number as a suffix. For example, if you have libgit2 v0.99 installed, you'd import git2go v29 with
+```sh
+go get github.com/libgit2/git2go/v29
+```
```go
import "github.com/libgit2/git2go/v29"
```