美文网首页
iOS 项目中一个标准的 .gitignore

iOS 项目中一个标准的 .gitignore

作者: inc3ption | 来源:发表于2020-06-02 22:28 被阅读0次
    ## Build generated
    build/
    DerivedData/
    
    ## Various settings
    *.pbxuser
    !default.pbxuser
    *.mode1v3
    !default.mode1v3
    *.mode2v3
    !default.mode2v3
    *.perspectivev3
    !default.perspectivev3
    xcuserdata/
    
    ## Other
    *.moved-aside
    *.xccheckout
    *.xcscmblueprint
    
    ## Obj-C/Swift specific
    *.hmap
    *.ipa
    *.dSYM.zip
    *.dSYM
    
    # CocoaPods
    #
    # We recommend against adding the Pods directory to your .gitignore. However
    # you should judge for yourself, the pros and cons are mentioned at:
    # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
    #
    Pods/
    PodMainDependencies/
    #
    # Add this line if you want to avoid checking in source code from the Xcode workspace
    # *.xcworkspace
    
    # Carthage
    #
    # Add this line if you want to avoid checking in source code from Carthage dependencies.
    # Carthage/Checkouts
    
    Carthage/Build

    相关文章

      网友评论

          本文标题:iOS 项目中一个标准的 .gitignore

          本文链接:https://www.haomeiwen.com/subject/jthmzhtx.html