module
Contents
go get;
- exact the path;
- clone the path to $GOPATH/src or $GOPATH/mod
go 基于 git 构建仓库
- git clone address: package
- tag: package version
version name;
v2.3.4: major:incompatiable minor: new feature; patch version: bug fix
伪版本: 不符合 v1.1.1格式; xxx—xxxxxxxxxxxxx
go.mod
-
module name: github地址;
-
require: 直接引用的包
- incompatiable: major>=2,但 path 不包含 …/vN
- indirect: 非直接依赖:
current –> B–[direct]–>[C,D];
C, D indirect:
- B没有module管理,
- C,D 没有在B的 go.mod文件中
how to update major version
update
- go get -u: update current module
go.sum
used for: 防止依赖包被篡改
format:
|
|
what happen before write to go.sum file
- hash the content and compare hash value list in sum.golang.org
what happen when another
first downl