刪除本地分支需要忽略的文件
git rm --cached *.xcuserstate
git rm --cached *.xcuserdata
git rm --cached "*.DS_Store"
iOS開發(fā)中創(chuàng)建.gitignore 的文件內(nèi)容
1. cd (需要添加.gitignore文件的目錄,Xcode工程的根目錄)
2. touch .gitignore
3. vim .gitignore
4. 進入編輯模式點擊 i 進行編輯
5. 將下列 ".gitignore文件內(nèi)容" 拷貝到編輯區(qū)
6. :wq 退出編輯模式
7. .gitignore文件創(chuàng)建成功
.gitignore文件內(nèi)容
# Xcode
.DS_Store
*/build/*
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
profile
*.moved-aside
DerivedData
.idea/
*.hmap
*.xccheckout
*.xcworkspace
!default.xcworkspace
#CocoaPods
Pods
!Podfile
!Podfile.lock