Reputation: 105097
So let's say I am developing a project all by myself with Subversion.
How should I organize my things? Should I do everything over the main trunk? Create a branch for each new feature? What?
Thanks
Upvotes: 1
Views: 137
Reputation: 5386
Typically, how I like to do it is to have a couple of different directories. Something like this:
Trunk
(deploy here)
- Production
- Staging
- Development/whatever
Branches
(develop here)
- Master Branch (primary)
- Secondary/Tertiary Branches
Tags
(Archive here)
- Name a tag appropriately (timestamp, version, edits)
Hope this helps. Feel free to ask questions.
Upvotes: 1