Skip to content

Latest commit

 

History

History
 
 

_vendor

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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