gvt
gvt copied to clipboard
gvt was a minimal go vendoring tool, based on gb-vendor. Today, you want to use modules instead.
I just updated my project and I no longer need one of the dependencies under the `vendor/` directory since it's no longer imported. Is there a way to detect and/or...
Hi. I tried to use `gvt restore` to resolve dependency recursively, but it doesnt' work. In source code, `downloadDependency` tries to read from the copied tree. https://github.com/FiloSottile/gvt/blob/50d83ea21cb0405e81efd284951e111b3a68d701/restore.go#L126-L138 But `Copypath()` seems...
As title, on my laptop I can download repos from Github without password prompt. But gvt prompts me to input username and password every time. Is there a way to...
Hi, is this possible to keep .git directory when vending packages from git? I have a project where I'm vending a couple of my own projects, I want to be...
Added 'allvcs' manifest parameter and new CLI option for gvt fetch.
Ran the following command from the root of my repository: `gvt fetch ./..` ``` $ gvt fetch ./.. 2017/10/10 12:21:51 Fetching: ./.. 2017/10/10 12:21:52 command "fetch" failed: "./.." is not...
Hi, I like `gvt` a lot and i use it heavily. Despite no updates in a while, it's been perfectly reliable for me. Thanks for all your work. But we...
This is useful in the following scenario: 1. `Project` depends on a `Library` that provides CGO Bindings 1. `Library` includes a submodule reference to repository containing C code. 1. `Library`...
Not very sophisticated but useful when you want to remove packages in one repository (e.g. to update all of them to a new version). This is not the same type...
``` $ gvt fetch github.com/apcera/libretto ... fetches a bunch of recursive dependencies... ... 2016/04/22 13:57:17 fetching recursive dependency github.com/apcera/libretto/Godeps/_workspace/src/github.com/vmware/govmomi 2016/04/22 13:57:17 command "fetch" failed: copyfile: create("$GOPATH/src/foo/vendor/github.com/apcera/libretto/Godeps/_workspace/src/github.com/vmware/govmomi/LICENSE"): open /$GOPATH/src/foo/vendor/github.com/apcera/libretto/Godeps/_workspace/src/github.com/vmware/govmomi/LICENSE: is a...