美文网首页
SVN常用忽略文件

SVN常用忽略文件

作者: 帆动世界 | 来源:发表于2018-10-30 09:17 被阅读53次

    SVN常用忽略文件

    
    #1.Build generated
    build
    DerivedData
    
    #2.Various settings
    *.pbxuser
    !default.pbxuser
    *.mode1v3
    !default.mode1v3
    *.mode2v3
    !default.mode2v3
    *.perspectivev3
    !default.perspectivev3
    xcuserdata
    
    #3.Other
    *.moved-aside
    *.xccheckout
    *.xcscmblueprint
    
    #4.Obj-C/Swift specific
    *.hmap
    *.ipa
    *.dSYM.zip
    *.dSYM
    
    #5.CocoaPods
    Pods
    
    #6.Carthage
    Carthage/Build
    Carthage #整个文件也可以不用提交
    
    #7.fastlane
    fastlane/report.xml
    fastlane/Preview.html
    fastlane/screenshots
    fastlane/test_output
    
    #8.Code Injection
    iOSInjectionProject
    
    #9.常见
    *.o
    *.lo
    *.la
    *.al
    .libs
    *.so
    *.so.[0-9]*
    *.pyc
    *.pyo
    *.rej
    *~
    #*#
    .#*
    .*.swp
    .DS_Store
    *.xcuserstate
    *.xcscheme
    *.xcworkspace
    profile
    *.xcuserdatad
    *.pbxproj
    
    #10.忽略git
    .git
    .gitignore
    
    

    相关文章

      网友评论

          本文标题:SVN常用忽略文件

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