Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do we need to check in *.xcuserstate?

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?

like image 979
Adam Lee Avatar asked Aug 04 '13 03:08

Adam Lee


1 Answers

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.

like image 148
BoltClock Avatar answered Oct 08 '22 09:10

BoltClock