如何在go项目中供应所有软件包

I cloned a project from Github whose dependencies aren't vendored. Typically, running go get ./... in the project directory should install all dependencies. However i am using govendor and i would like all dependencies to show up in my vendor folder. Usually i would run govendor init to create the vendor folder, Then govendor fetch github.com/some/dependency for all my dependencies.

Is there a single govendor command that would simulate go get ./...? govendor get ./... doesn't work.

From the FAQ:

Q: How do I populate the vendor folder if it has not been checked in?

A: Run govendor sync.