如何使用dep轻松使用自己的分叉包?
当我接受更改时,我希望能够再次使用上游。
答案 0 :(得分:6)
dep
不再是首选的方式,(从go1.11开始,首选模块)
这很容易实现,但仍然可以在代码中的任何地方引用并通过github.com/upstream/repo
进行解析。
[[constraint]]
name = "github.com/upstream/repo"
branch = "forked-branch-name"
source = "github.com/lexton/repo"