Can git be integrated with Xcode?

后端 未结 14 1567
星月不相逢
星月不相逢 2020-11-28 17:54

Is there any way to use a git repository with the built in SCM functions of Xcode?

14条回答
  •  我在风中等你
    2020-11-28 18:22

    In addition to the .gitignore settings referenced from the post above I have added the generated files to my config file.

    build/
    *.pyc
    *~.nib/
    *.pbxuser
    *.perspective
    *.perspectivev3
    *.xcworkspace/
    xcuserdata/

    This helps to keep the noise out of my depot.

    If I need to add generated files I add a Release folder and keep the *.framework and *.app folders to my project directory. I add anything I release to the testing group to the Release folder and tag it.

提交回复
热议问题