标签:net ide get 需要 http 适合 git 管理系 自己
下面是测试结果
- 自带的vendor - 项目创建vendor子目录,然后github的地址放进去就ok了 - govendor - 安装:go get -u github.com/kardianos/govendor - 初始化:govendor init - 测试:govendor fetch github.com/ziyouchutuwenwu/objective-go - 问题: fetch貌似没有把所有的子目录都弄下来 get装到GOPATH里面去了,蛋疼 - gvt - 安装:go get -u github.com/FiloSottile/gvt - 测试:gvt fetch github.com/ziyouchutuwenwu/objective-go - 优势: 全部下载,支持tag和branch下载 - gb - 安装:go get github.com/constabulary/gb/... - 测试:gvt fetch github.com/ziyouchutuwenwu/objective-go - 问题: 先下载依赖库,成功以后下载需要的repo,全部成功以后才会在vendor目录里面,在天朝,golang.org的访问出问题,这个模式不太好 - glide - 安装:go get github.com/Masterminds/glide - 初始化:glide create
- 下载:glide install - 优势: 根据你的代码自动发现需要的import包,创建yaml文件,适合团队合作(没必要在自己的项目repo里面带一堆三方库,靠这个就可以了)
支持自定义镜像,这个在别的里面没发现
直接glide
配置方式
rm -rf ~/.glide mkdir -p ~/.glide glide mirror set https://golang.org/x/mobile https://github.com/golang/mobile --vcs git glide mirror set https://golang.org/x/crypto https://github.com/golang/crypto --vcs git glide mirror set https://golang.org/x/net https://github.com/golang/net --vcs git glide mirror set https://golang.org/x/tools https://github.com/golang/tools --vcs git glide mirror set https://golang.org/x/text https://github.com/golang/text --vcs git glide mirror set https://golang.org/x/image https://github.com/golang/image --vcs git glide mirror set https://golang.org/x/sys https://github.com/golang/sys --vcs git
标签:net ide get 需要 http 适合 git 管理系 自己
原文地址:http://www.cnblogs.com/ziyouchutuwenwu/p/6296931.html