github.com/purpleclay/gitz@v0.8.2-0.20240515052600-43f80eea2fe1/docs/install/package.md (about) 1 --- 2 icon: material/package-variant-closed 3 title: How to install gitz 4 description: Get up and running with gitz as quickly as possible 5 --- 6 7 # How to install gitz 8 9 Use `go get` to pull the `gitz` package as a dependency within your `go.mod` file: 10 11 ```{ .text .no-select } 12 go get github.com/purpleclay/gitz 13 ``` 14 15 Then to get started, import the package into your project: 16 17 ```{ .go .no-select } 18 import git "github.com/purpleclay/gitz" 19 ``` 20 21 And that's it!