如何将项目的 cvs 头添加为依赖项?
How to add the cvs head of a project as dependency?
我想将我的项目的依赖项更新到它的最新状态(其 master 分支的最新提交),该状态尚未发布。
更具体地说,我想要依赖的项目正在使用 git 并在 GitHub 上托管 public。我用的是站在maven肩膀上的lein
最简单的方法是什么?
如果您的依赖项声明为 submodule, you can change it to track the latest commit of a branch.
然后任何 git submodule update --remote
都会将依赖更新到最新的提交。
(不要忘记在父仓库中添加并提交新的 gitlink, the special entry in the index,它代表子模块的新 SHA1)。
我想将我的项目的依赖项更新到它的最新状态(其 master 分支的最新提交),该状态尚未发布。
更具体地说,我想要依赖的项目正在使用 git 并在 GitHub 上托管 public。我用的是站在maven肩膀上的lein
最简单的方法是什么?
如果您的依赖项声明为 submodule, you can change it to track the latest commit of a branch.
然后任何 git submodule update --remote
都会将依赖更新到最新的提交。
(不要忘记在父仓库中添加并提交新的 gitlink, the special entry in the index,它代表子模块的新 SHA1)。