-
error
...... invalid version: unknown revision
- 在git 配置文件中添加以下配置:
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[url "git@github.com:"]
insteadOf = https://github.com/
- 设置go的环境变量
export GOPRIVATE=github.com/私有仓库
- 可能需要取消GOPROXY代理值。
- 在
~/.netrc
配置git登录名和token
machine github.com login git账户 password [Personal access token]
- 最后
go get Your Repo