Xcode 7: ignore .xcscmblueprint in repository?

前端 未结 3 1980
星月不相逢
星月不相逢 2021-02-02 05:14

I noticed that Xcode 7 creates a new .xcscmblueprint file in the xcshareddata folder. Will it be always auto generated? Should this file be added to th

3条回答
  •  别跟我提以往
    2021-02-02 06:09

    The files seems to contain information pertaining to your source code repository. I think the "SCM" part of the filename stands for "Source Code Management". When looking at the one in my project, it indeed contains information about the GitHub repository that my XCode projects it (and also the git submodules that my repository uses, that's neat!). Of course, it also contains hashes so one could wonder if they are stable across developer, but I'd bet they are.

    For that reason, I back up the advice given in many comments. You DO want to version this file.

提交回复
热议问题