在我目前的工作地点,我们正在使用git-flow,我们使用标准存储桶(在开发中开发,在master中发布,具有此功能,功能等).
我们正在使用大量的git存储库(每个项目),我经常需要在多个git中启动一个"功能".通常是三个git回购.
myApp
git: bitofcode1
git: scripts
git: library
Run Code Online (Sandbox Code Playgroud)
我尝试在所有三个git repos中使用相同的功能名称'feature-change-whatever',但我觉得git-flow模型不适合处理跨多个repos的项目中的新功能.
myApp
git: bitofcode1 (feature-change-whatever)
git: scripts (feature-change-whatever)
git: library (feature-change-whatever)
Run Code Online (Sandbox Code Playgroud)
我的想法是,为了将git-flow与'myapp'一起使用,我最好将我的3个不同的git存储库合并为一个更大的存储库.在使用git-flow时还有其他方法可以解决这个问题吗?