英文:
What are the major differences between glide and godep?
问题
我一直在尝试使用godep,并发现它非常有用。然而,很多人建议我使用Glide,它在我看来与godep差不多。因此,我想知道这两者之间的区别。
英文:
I have been trying out godep and find it quite useful. However many people have suggested Glide instead, which seems more or less the same to me. Therefore I am wondering the differences between the two.
答案1
得分: 2
glide会将其下载并存储在名为vendor的目录中。Godep只是简单地go get依赖项,并在GoDep文件中指定的提交上进行检出。我推荐使用glide,它更加灵活。
英文:
glide will download and store it at a directory name vendor. Godep simply go get dependencies and checkout to the commit you specify in GoDep file. I recommend glide. It has more flexibility.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。


评论