I am using Crashlytics framework for crash reporting. After running the project from xcode and doing git status, I always get the message like below
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: Crashlytics.framework/Versions/A/Crashlytics
modified: Crashlytics.framework/Versions/A/Resources/Info.plist
modified: Crashlytics.framework/run
Please advice me on how to get rid of these modified files from Crashlytics
@Abizem : what I did for .gitignore is following
.DS_Store
#backups
*.swp
*~.nib
*~.xib
*~
*.zip
*.gz
build
*.[oa]
DerivedData
VERSION-FILE
Crashlytics.framework/
#XCode
*.pbxuser
*.mode1
*.mode1v3
*.mode2v3
*.perspective
*.perspectivev3
project.xcworkspace/
xcuserdata/
but it still does not work.
You have two choices: