将 TFS 源代码转换为 GIT。 .tpattributes 语法是否等于 .gitattributes 语法?
Converting TFS source code to GIT. Is .tpattributes syntax equal to .gitattributes syntax?
我正在将我的源代码从 TFS 转换为 Git,我想将所有 .tpattributes
文件转换为 .gitattributes
文件。
这两个文件的模式语法似乎相同,所以我想知道是否将我的 .tpattributes
文件重命名为 .gitattributes
文件那么简单?
还是需要做更多工作以确保语法与 Git?
兼容
您可以通过重命名 .tpattributes
文件来 启动 ,但是,请检查(前后状态为 git)它不会忽略太多了。
如前所述in this answer
.tpattributes
are not recursive. (In fact, they cannot be, since you can have advanced workspace mappings.)
You will need a .tpattributes
in each folder.
但是,.gitignore
适用于当前文件夹和下面的所有文件夹。
我正在将我的源代码从 TFS 转换为 Git,我想将所有 .tpattributes
文件转换为 .gitattributes
文件。
这两个文件的模式语法似乎相同,所以我想知道是否将我的 .tpattributes
文件重命名为 .gitattributes
文件那么简单?
还是需要做更多工作以确保语法与 Git?
您可以通过重命名 .tpattributes
文件来 启动 ,但是,请检查(前后状态为 git)它不会忽略太多了。
如前所述in this answer
.tpattributes
are not recursive. (In fact, they cannot be, since you can have advanced workspace mappings.)
You will need a.tpattributes
in each folder.
但是,.gitignore
适用于当前文件夹和下面的所有文件夹。