无法通过 godep update ... 命令和 godep save -r ./ 更新供应商 deps
Failed to update vendor deps via godep update ... command and godep save -r ./
我的 $GOPATH 中有最新的 deps。现在我想通过调用 godep update ./...
然后调用 godep save ./...
用新的 deps(最新的 GOPATH)更新我的项目 Godeps.json 。
但是我仍然在 Godeps.json 的旧部门工作。
请检查一下 difference between godep update and godep save。
我通常只使用 godep save
除非我正在更新特定的包。这会从 GOPATH
中获取项目的所有更新包。
顺便说一句:我对 Godeps 也很陌生。
确保你有 git 个要更新的提交包,你可以使用 git 日志检查提交 sha-1 校验和并确保它在 [=13] 中有不同的 rev 提交版本=].
然后在 godep 命令中包含包名 godep update github.com/package/...
我的 $GOPATH 中有最新的 deps。现在我想通过调用 godep update ./...
然后调用 godep save ./...
用新的 deps(最新的 GOPATH)更新我的项目 Godeps.json 。
但是我仍然在 Godeps.json 的旧部门工作。
请检查一下 difference between godep update and godep save。
我通常只使用 godep save
除非我正在更新特定的包。这会从 GOPATH
中获取项目的所有更新包。
顺便说一句:我对 Godeps 也很陌生。
确保你有 git 个要更新的提交包,你可以使用 git 日志检查提交 sha-1 校验和并确保它在 [=13] 中有不同的 rev 提交版本=].
然后在 godep 命令中包含包名 godep update github.com/package/...