码迷,mamicode.com
首页 > 其他好文 > 详细

golang的包管理系统

时间:2017-01-18 21:22:02      阅读:893      评论:0      收藏:0      [点我收藏+]

标签: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

 

golang的包管理系统

标签:net   ide   get   需要   http   适合   git   管理系   自己   

原文地址:http://www.cnblogs.com/ziyouchutuwenwu/p/6296931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!