我想将我的项目的依赖项更新为其最新状态(其主分支的最新提交),该状态尚未发布。
更具体地说,我想要依赖的项目是在GitHub上使用git和托管public。我使用lein,它站在maven的肩膀上。
最简单的方法是什么?
答案 0 :(得分:1)
如果您的依赖项被声明为 submodule ,则可以change it to track the latest commit of a branch。
然后任何git submodule update --remote
都会将依赖项更新为最新的提交
(不要忘记在父代表中添加和提交新的 gitlink ,special entry in the index,它代表子模块的新SHA1。