Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个受 git 版本控制的项目。一切顺利。
我还有“buildtool”目录,里面有一些用于测试、部署和设置的脚本。
有时在更改分支时,我希望该目录是最新的,并且我希望它处于版本控制之下?
我如何做到这一点?
+1 子模块(感谢 Adrian Cornish 第一次提出建议)从技术上讲,您有两个不同的项目,它们具有松散耦合,但没有真正的源代码耦合。首先将它们放在单独的存储库中。然后要么将它们完全分开,要么使用子模块将构建内容链接到源内容。