有一个用 go 语言编写的项目。它是使用 git 管理的。我应该使用 git 子模块还是只使用导入指令来使用 3rd 方项目?
例如:
// Just use import directive.
import "github.com/3rd-party/dep"
// From a submodule.
$ cd myown
$ git add submodule https://github.com/3rd-party/dep dep
$ ...
import "github.com/myown/dep"
泛舟湖上清波郎朗
相关分类