如何在dep golang中使用分叉软件包?

时间:2019-01-07 19:00:59

标签: go

如何使用dep轻松使用自己的分叉包?

当我接受更改时,我希望能够再次使用上游。

1 个答案:

答案 0 :(得分:6)

dep不再是首选的方式,(从go1.11开始,首选模块)

这很容易实现,但仍然可以在代码中的任何地方引用并通过github.com/upstream/repo进行解析。

[[constraint]]
  name = "github.com/upstream/repo"
  branch = "forked-branch-name"
  source = "github.com/lexton/repo"