godep helps build packages reproducibly by fixing their dependencies.
This tool assumes you are working in a standard Go workspace, as described in https://golang.org/doc/code.html. We expect godep to build on Go 1.4* or newer, but you can use it on any project that works with Go 1 or newer.
$ go get github.com/tools/godep
Assuming you've got everything working already, so you can build your project
with go install
and test it with go test
, it's one command to start using:
$ godep save -r
This will save a list of dependencies to the file Godeps/Godeps.json
, copy
their source code into Godeps/_workspace
and rewrite the dependencies. Godep
does not copy:
- files from source repositories that are not tracked in version control.
*_test.go
files.testdata
directories.
Read over the contents of Godeps/_workspace
and make sure it looks
reasonable. Then commit the whole Godeps directory to version control,
including Godeps/_workspace
.
The additional flag -r
tells save to automatically rewrite package import
paths. This allows your code to refer directly to the copied dependencies in
Godeps/_workspace
. So, a package C that depends on package D will actually
import C/Godeps/_workspace/src/D
. This makes C's repo self-contained and
causes go get
to build C with the right version of all dependencies.
If you don't use -r
, then in order to use the fixed dependencies and get
reproducible builds, you must make sure that every time you run a Go-related
command, you wrap it in one of these two ways:
- If the command you are running is just
go
, run it asgodep go ...
, e.g.godep go install -v ./...
- When using a different command, set your
$GOPATH
usinggodep path
as described below.
Godep does not process the imports of .go
files with either the ignore
or appengine
build tags.
Test files and testdata directories can be saved by adding -t
.
The godep restore
command is the opposite of godep save
. It will install the
package versions specified in Godeps/Godeps.json
to your $GOPATH
. This modifies the state of packages in your $GOPATH
.
- Edit code
- Run
godep go test
- (repeat)
To add a new package foo/bar, do this:
- Run
go get foo/bar
- Edit your code to import foo/bar.
- Run
godep save
(orgodep save ./...
).
To update a package from your $GOPATH
, do this:
- Run
go get -u foo/bar
- Run
godep update foo/bar
. (You can use the...
wildcard, for examplegodep update foo/...
).
Before comitting the change, you'll probably want to inspect the changes to
Godeps, for example with git diff
, and make sure it looks reasonable.
If your repository has more than one package, you're probably accustomed to
running commands like go test ./...
, go install ./...
, and go fmt ./...
.
Similarly, you should run godep save ./...
to capture the dependencies of all
packages.
The godep path
command helps integrate with commands other than the standard
go tool. This works with any tool that reads GOPATH from its environment, for
example the recently-released oracle
command.
$ GOPATH=`godep path`:$GOPATH
$ oracle -mode=implements .
Old versions of godep wrote the dependency list to a file Godeps, and didn't copy source code. This mode no longer exists, but commands 'godep go' and 'godep path' will continue to read the old format for some time.
Godeps is a json file with the following structure:
type Godeps struct {
ImportPath string
GoVersion string // Abridged output of 'go version'.
Packages []string // Arguments to godep save, if any.
Deps []struct {
ImportPath string
Comment string // Description of commit, if present.
Rev string // VCS-specific commit ID.
}
}
Example Godeps:
{
"ImportPath": "github.com/kr/hk",
"GoVersion": "go1.1.2",
"Deps": [
{
"ImportPath": "code.google.com/p/go-netrc/netrc",
"Rev": "28676070ab99"
},
{
"ImportPath": "github.com/kr/binarydist",
"Rev": "3380ade90f8b0dfa3e363fd7d7e941fa857d0d13"
}
]
}
Godep has preliminary support for the Go 1.5 vendor/
experiment
utilizing the same environment variable that the go tooling itself supports:
export GO15VENDOREXPERIMENT=1
When GO15VENDOREXPERIMENT=1
godep will write the vendored code into the local
package's vendor
directory. A Godeps/Godeps.json
file is created, just like
during normal operation. The vendor experiment is not compatible with rewrites.
There is currently no automated migration between the old Godeps workspace and the vendor directory, but the following steps should work:
$ unset GO15VENDOREXPERIMENT
$ godep restore
# The next line is only needed to automatically undo rewritten imports that were
# created with godep save -r.
$ godep save ./...
$ rm -rf Godeps
$ export GO15VENDOREXPERIMENT=1
$ godep save ./...
$ git add -A
# You should see your Godeps/_workspace/src files "moved" to vendor/.
NOTE: There is a "bug" in the vendor experiment that makes using ./...
with
the go tool (like go install) consider all packages inside the vendor directory:
golang/go#11659. As a workaround you can do:
$ go <cmd> $(go list ./... | grep -v /vendor/)
- Increment the version in
version.go
. - Tag the commit with the same version number.
- Update
Changelog.md
.