博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【GoLang】golang 报管理工具 Godep 介绍
阅读量:5119 次
发布时间:2019-06-13

本文共 1604 字,大约阅读时间需要 5 分钟。

使用方法:

 

提交:

cd ${GOPATH}/src/github.com/junneyang/xcloud
godep save -v ./...
rm -rf vendor/
git checkout --force

git init
git pull https://github.com/junneyang/xcloud.git master
git add --all
git commit -m "initial commit"
git remote add origin https://github.com/junneyang/xcloud.git
git push origin master

使用:
mkdir -p ${GOPATH}/src/github.com/junneyang
cd $_ && git clone https://github.com/junneyang/xcloud.git -b release3.1
cd ${GOPATH}/src/github.com/junneyang/xcloud

godep get -v ./...

godep/None go install -v ./...
godep/None go test -v ./...

 

 

参考开源项目codis

https://github.com/CodisLabs/codis

 

安装godep

官方的安装文档是使用go get github.com/tools/godep,很可惜,因为“网络”问题会报一个找不到golang.org/x/tools/go/vcs的错误。

而 是 golang.org/x/tools的一个镜像,代码是一样的,所以我是如下安装的。

  • go get github.com/golang/tools

  • GOPATH\src\github.com目录下就有tools文件夹。

  • src下和github.com平级新建golang.org文件下,在此文件夹下建x文件夹,然后将tools都复制进去。

  • 然后再执行go get github.com/tools/godep

  • 此时godep安装在你的GOPATH\bin目录下。

使用godep

建立一个演示项目来演示godep。

  • 此演示项目的路径要加入到GOPATH

  • 依赖的项目和项目本身都应该是个git repository

    • cd skeleton\src\wiselyman.org\app

      git init git add .git commit
    • cd skeleton\src\xx.org\dep

      git initgit add .   git commit
  • 项目目录及代码如图所示

 

  • skeleton\src\wiselyman.org\app目录下,执行godep save,此时会生成Godeps文件夹

  • 这时你可以移除xx.org目录了。

  • 继续使用将用以下命令

godep go run main.gogodep go buildgodep go installgodep go test 参考资料: http://studygolang.com/articles/2147 http://www.01happy.com/golang-package-tool-godep/ https://github.com/tools/godep http://daozhao.goflytoday.com/2015/01/golang-godep/ https://segmentfault.com/a/1190000003781342 官方文档:https://github.com/tools/godep

转载于:https://www.cnblogs.com/junneyang/p/6084974.html

你可能感兴趣的文章
jvm参数
查看>>
我对前端MVC的理解
查看>>
Silverlight实用窍门系列:19.Silverlight调用webservice上传多个文件【附带源码实例】...
查看>>
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
转-求解最大连续子数组的算法
查看>>
对数器的使用
查看>>
【ASP.NET】演绎GridView基本操作事件
查看>>
ubuntu无法解析主机错误与解决的方法
查看>>
尚学堂Java面试题整理
查看>>
MySQL表的四种分区类型
查看>>
[BZOJ 3489] A simple rmq problem 【可持久化树套树】
查看>>
STM32单片机使用注意事项
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
Loj #139
查看>>
hihocoder1187 Divisors
查看>>
Azure 托管镜像和非托管镜像对比
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>