Git ignore file for Xcode projects

后端 未结 20 1538
栀梦
栀梦 2020-11-22 03:03

Which files should I include in .gitignore when using Git in conjunction with Xcode?

20条回答
  •  离开以前
    2020-11-22 03:30

    Mine is a .bzrignore, but it is the same idea :)

    .DS_Store
    *.mode1v3
    *.pbxuser
    *.perspectivev3
    *.tm_build_errors
    

    The tm_build_errors is for when I use TextMate to build my project. It is not quite as comprehensive as Hagelin, but I thought it was worth posting for the tm_build_errors line.

提交回复
热议问题