3

My question is should you ignore the debugger folder and the Breakpoints_v2.xcbkptlist file. Or should the files be committed as well.

Is there a standard Xcode 5 git ignore file like the one listed here but for Xcode 5. I like this one because its comments explains every ignore file in detail for people who aren't as advanced like myself.

Community
  • 1
  • 1
Dblock247
  • 6,167
  • 10
  • 44
  • 66
  • 1
    possible duplicate of [What should Xcode 5 gitignore file include?](http://stackoverflow.com/questions/18939421/what-should-xcode-5-gitignore-file-include) – Alexis Feb 18 '14 at 14:18

2 Answers2

4

Yes. Gitignore files for Xcode 5 project should look like this:

# Xcode
.DS_Store
#build file
build/
#personal settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
#xcode state
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata
profile
*.moved-aside
DerivedData
.idea/
Nicholas Murray
  • 13,305
  • 14
  • 65
  • 84
Nikos M.
  • 13,685
  • 4
  • 47
  • 61
2

If there is a large debug/build folder in the same directory I would ignore that because it should just be full of one time build files that you definitely don't need to keep around. I assume that Breakpoints file stores all information on how you've used breakpoints in the project which I would definitely commit.

Keith Smiley
  • 61,481
  • 12
  • 97
  • 110