git|git .gitignore忽略文件.DS_Store

cd 你项目目录
创建gitignore
touch .gitignore

git|git .gitignore忽略文件.DS_Store
文章图片
项目主目录,和项目平级的目录 进入你iOS项目目录,直接修改并保存.gitignore
修改内容如下:

# Xcode.DS_Store## Build generatedbuild/DerivedData/## Various settings*.pbxuser!default.pbxuser*.mode1v3!default.mode1v3*.mode2v3!default.mode2v3*.perspectivev3!default.perspectivev3xcuserdata/## Other*.moved-aside*.xccheckout*.xcworkspace!default.xcworkspace## Obj-C/Swift specific*.hmap*.ipa*.dSYM.zip*.dSYM# CocoaPodsPods!Podfile!Podfile.lock# CarthageCarthage/Build# fastlanefastlane/report.xmlfastlane/Preview.htmlfastlane/screenshotsfastlane/test_output# Code InjectioniOSInjectionProject/

OK,以上完成,最后一步很关键了,否则.gitignore不能生效的。
【git|git .gitignore忽略文件.DS_Store】如果是项目做到一半才开始加入.gitignore,则需要在commit所有已经修改文件后,执行以下命令保证.gitignore开始生效。
git rm -r --cached . git add . git commit -m 'update .gitignore'

    推荐阅读