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?
Asked
Active
Viewed 1,670 times
13
-
related: [Git ignore file for Xcode projects](http://stackoverflow.com/q/49478/457406) – Matthias Bauch Aug 04 '13 at 08:03
1 Answers
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
-
1A `.gitignore` for reference: https://github.com/github/gitignore/blob/master/Objective-C.gitignore – Marcelo Aug 04 '13 at 03:24