devoured elysium
devoured elysium

Reputation: 105097

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? Create a branch for each new feature? What?

Thanks

Upvotes: 1

Views: 137

Answers (1)

TNC
TNC

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

Related Questions