git .gitignore忽略文件.DS_Store

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


git .gitignore忽略文件.DS_Store_第1张图片
项目主目录,和项目平级的目录

进入你iOS项目目录,直接修改并保存.gitignore
修改内容如下:

# Xcode

.DS_Store

## Build generated

build/

DerivedData/

## Various settings

*.pbxuser

!default.pbxuser

*.mode1v3

!default.mode1v3

*.mode2v3

!default.mode2v3

*.perspectivev3

!default.perspectivev3

xcuserdata/

## Other

*.moved-aside

*.xccheckout

*.xcworkspace

!default.xcworkspace

## Obj-C/Swift specific

*.hmap

*.ipa

*.dSYM.zip

*.dSYM

# CocoaPods

Pods

!Podfile

!Podfile.lock

# Carthage

Carthage/Build

# fastlane

fastlane/report.xml

fastlane/Preview.html

fastlane/screenshots

fastlane/test_output

# Code Injection

iOSInjectionProject/

OK,以上完成,最后一步很关键了,否则.gitignore不能生效的。

如果是项目做到一半才开始加入.gitignore,则需要在commit所有已经修改文件后,执行以下命令保证.gitignore开始生效。

git rm -r --cached .
git add .
git commit -m 'update .gitignore'

你可能感兴趣的:(git .gitignore忽略文件.DS_Store)