How do I add a new project to source control (SVN) using Xcode 4?
相关问题
- Xcode debugger displays incorrect values for varia
- Image loads in simulator but not device?
- How can I set the SVN password with Emacs 23.1 bui
- importing files from other directories in xcode
- XCode Server: Opening import file for module '
相关文章
- xcode 4 garbage collection removed?
- Xcode: Is there a way to change line spacing (UI L
- Unable to process app at this time due to a genera
- Popover segue to static cell UITableView causes co
- “Storyboard.storyboard” could not be opened
- didBeginContact:(SKPhysicsContact *)contact not in
- Is there a version control system abstraction for
-
The file “
.app” couldn’t be opened becaus
The XCode 4 documentation recommend using command-line tools or a utility program to set up a Git or Subversion repository.
Open Organizer. Click on the root of your SVN repository in the tree on the left. Click on Import on the bottom right and choose the directory from finder that you want to add and click Import.
This will add the project to SVN
Use Terminal. At the command line, you can use the
svn import
command to add the project to your repository.From the way you worded your question, I'm assuming that your subversion repository already exists. You'll follow the same basic steps outlined in Add Git or Subversion Version Control to an Existing Project in the Xcode 4 Users Guide, except that instead of creating a whole new repository you'll just add a new directory to your existing repository.
It's handy that Xcode has support for version control, but it's not a full-featured GUI version control client. You should still know how to manage your repository using the svn command line program. Alternately, you can get a GUI front end like Versions. Either way, you should have (and have read) the Subversion Book. There's a lot more to using version control than just checking files in and out, and you need to know how it works and how best to use it if it's going to help you.