xcodeproj under version control

前端 未结 3 1399
梦毁少年i
梦毁少年i 2020-12-04 12:26

What are the best practices while including a Xcode project under version control.

3条回答
  •  粉色の甜心
    2020-12-04 13:08

    This is what is in my Global .gitignore file which you can see as a gist on GitHub, but the Xcode list can be applied to other systems

    # Mac OS X
    *.DS_Store
    
    # Xcode
    *.pbxuser
    *.mode1v3
    *.mode2v3
    *.perspectivev3
    *.xcuserstate
    project.xcworkspace/
    xcuserdata/
    
    # Generated files
    *.o
    *.pyc
    
    #Python modules
    MANIFEST
    dist/
    build/
    
    # Backup files
    *~.nib
    \#*#
    .#*
    

提交回复
热议问题