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.
我编写了一个自定义合并驱动程序,它适用于我在多个存储库中所做的所有工作。
我想知道是否有一种全局方法可以指定所有文件都应使用我的自定义合并驱动程序,而不是在每个 repo 中都有一个 .gitattributes?
自定义合并驱动程序在.gitattributes文件中声明,这是针对一个存储库(在具有相同历史记录的上游存储库中推送/拉取:克隆)
.gitattributes
但这不适用于不同的存储库(即具有不同的历史记录),即使您将这些不同的存储库分组为一个父存储库(将包含所述.gitattributes文件)的子模块:该文件中声明的属性将遍历子模块并将仅限于父回购。
I'm building an in-game browser RoR app for Eve Online. One of the requirements of my app is displaying an SVG graph generated by graphviz. I'm having some issues getting my requirements met within this environm