Reputation: 913
I need to create a branch for SVN project in xcode. I need to know what is trunk, tags and branches under xcode working copies configure.
How do i create a branch in Xcode editor? or i need to do only in terminal?
Upvotes: 1
Views: 2381
Reputation: 3207
Below is basic understanding for terms you required.
Trunk: The trunk is a directory where all the main development happens and is usually checked out by developers to work on the project.
Tags : The tags directory is used to store named snapshots of the project. Tag operation allows to give descriptive and memorable names to specific version in the repository.
For example, LAST_STABLE_CODE_BEFORE_EMAIL_SUPPORT is more memorable than
Repository UUID: 7ceef8cb-3799-40dd-a067-c216ec2e5247 and
Revision: 13
Branches: Branch operation is used to create another line of development. It is useful when you want your development process to fork off into two different directions. For example, when you release version 5.0, you might want to create a branch so that development of 6.0 features can be kept separate from 5.0 bug-fixes.
You could go through this tutorial for all basic concept and branching stuff.
Reference Link :
1. SVN tutorial
2. Create new branch in SVN
/----- UPDATE ------/
Below is screenshot for creating new branch via XCode.
Upvotes: 1