I have a file xcuserstate
that is modified every time I do something in the xCode, it is as follows:
modified: Proyecto.xcodeproj/project.xcworkspace/xcuserdata/MiNombre.xcuserdatad/UserInterfaceState.xcuserstate
For this to stop happening, I did the following:
git rm --cached *.xcuserstate
git commit -m "Removed cached files"
git push
I work, but then I get this file modified:
Proyecto.xcodeproj/project.xcworkspace/xcuserdata/
When I do the same procedure as the previous one, it gives me this message:
did not match any files
How can I stop so it does not go on? o What files, and how, should I leave out of my version control?