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