美文网首页
git忽略文件

git忽略文件

作者: 晴天12138 | 来源:发表于2018-01-16 15:02 被阅读0次

    cd 到文件夹

    先删除ds store文件

    find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

    在文件夹中touch .gitignore

    open .gitignore
    在文件中加入

    # Xcode

    .DS_Store

    */.DS_Store

    */build/*

    *.pbxuser

    !default.pbxuser

    *.mode1v3

    !default.mode1v3

    *.mode2v3

    !default.mode2v3

    *.perspectivev3

    !default.perspectivev3

    xcuserdata

    profile

    *.moved-aside

    DerivedData

    .idea/

    *.hmap

    *.xccheckout

    *.xcworkspace

    *.xcuserstate

    !default.xcworkspace

    #CocoaPods

    #Podfile

    Podfile.lock

    提交至git

    git add .gitignore

    git commit -m 'delete .DS_Store'

    相关文章

      网友评论

          本文标题:git忽略文件

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