Subversion workflow for a single developer on a local repository
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? Cr开发者_StackOverfloweate a branch for each new feature? What?
Thanks
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.
精彩评论