Do I have to register iOS xcuserdata?

Should I check the following files in git

?

# On branch 4-menu
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#   myapp-ios.xcodeproj/project.xcworkspace/xcuserdata/harith.xcuserdatad/
#   myapp-ios.xcodeproj/xcuserdata/harith.xcuserdatad/

      

I am new to programming iOS

and am curious if I need to ignore them

+3


source to share


1 answer


These files contain your user data and workspace settings of your Xcode projects, including file / folder orders, etc., which are visible in the left pane of your Xcode, and it is a common habit not to push them into the repository.



See the .gitignore file here .

+3


source







All Articles