Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 679 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 679 Bytes

vendor

This directory holds vendored dependencies, managed via git subtrees. All management commands should be run from the top level of the repository. The blessed build procedure for the binaries (encoded in their Makefiles) makes use of this directory; normal development will use whichever version(s) are in your normal GOPATH.

Adding a new dependency

git subtree add --prefix _vendor/src/github.com/foo/bar [email protected]:foo/bar master --squash

Updating a dependency

git subtree pull --prefix _vendor/src/github.com/foo/bar [email protected]:foo/bar master --squash