There is a question mark next to a .bundle file in a Xcode 4.3 project:

When I try to right-click and select Source Control, the Add menuitem is disabled/dimmed:

How can I add the .bundle to source control?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For stuff like this that Xcode doesn’t instinctively or decently do, I usually resort to using the command line options.
For a whole directory such as a bundle, use Terminal to
cdto the directory where the bundle lives and then dosvn add Settings.bundleorgit add Settings.bundleor whatever source control set-up you’re using.And once it’s checked in or committed & pushed or whatever, Xcode will be able to manage the files within that directory just fine.