13

I am wondering do we need to checkin *.xcuserstate file? I think it is not part of source code? But maybe it is important to maintain it in the source control?

Adam Lee
  • 24,710
  • 51
  • 156
  • 236

1 Answers1

13

No, you should ignore that file from source control. It's a user-specific file used by Xcode to set up your workspace for you, so you're right that it's not part of the source code.

BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356
  • 1
    A `.gitignore` for reference: https://github.com/github/gitignore/blob/master/Objective-C.gitignore – Marcelo Aug 04 '13 at 03:24