4
votes
Best way to migrate from VSS to Subversion?
We did this migration recently at work. I strongly suggest:
Just add the new code from VSS, take the hit that pre-svn history will have to stay in the old VSS repository.
If …
3
votes
Best web front-end for SVN?
redmine is what we're using at work.
It's similar to trac, but offers multiple project capability. The browser's decent, allowing role based per …
0
votes
What are the best practices for database scripts under code control
The create script option:
Use create scripts that will build you the latest version of the database from scratch, which is empty except the default lookup data.
Use standard version …
1
vote
What are the best practices for database scripts under code control
The upgrade script option
Store each change in the database as a separate sql script. Store each group of changes in a numbered folder. Use a script to apply changes a folder at a time and …
1
vote
Code freeze in SVN - Build management
Use a stable branch and Subversion >=1.5 (server, repository format and clients).
Make a branch from Trunk and designate it as your stable branch. Forbid your developers from committing to …
3
votes
CVS/SVN best practices for branching and tagging
I believe this is from coding horror:
Chris Birmele's paper on Branching and Merging is the best introduction I've found to this essential source control task. There are dozens of ways to b …
2
votes
CVS/SVN best practices for branching and tagging
If you want a starter for 10 for subversion:
Treat 'trunk' as a complete history of your development. Everything that ever gets released must appear in trunk at some point and in some form. …
3
votes
Why should my team adopt source control?
If the current process is copying a folder and giving it a date, isn't that so that you get some sort of development history, so isn't that basically a simple form of source control?
So to …
2
votes
Best setup for code promotion and feature branching in Subversion?
First off, don't use a top level trunk branches tags, use a per project trunk branches tags like this:
/Projects
/CashCowProject
/branches
/tags
/trunk
/vs
…
6
votes
Adding Visual Studio Project references to SVN
Version control will only keep track of the actual files underneath the working folder. If the third party libraries are installed elsewhere on the machine, they will not be included in the source …
2
votes
Subversion: how to nuke a repository?
Not really, if you want to keep the configuration, MOVE all the contents of the repository directory to a safe place, then use svnadmin to create a new blank repository, then copy your conf and hoo …
0
votes
What to do with multiple projects depending on the same source?
Externals, but do be aware of this issue:
http://stackoverflow.com/questions/683716/subversion-upda …
0
votes
In Subversion what are best practices to modifying historical files?
You'll need to add the fix to each head, unfortunately.
Although I'm sure there's technically a way of using svnadmin dump and dumpfilter to do this trick it would be a dodgy rewriting of history t …
2
votes
Periodically copy revisions from one SVN repository to another active SVN repository
If SVN externals would work, but the only stumbling block is access rights, then why not make a clone of the repository and point the externals to that?
SVN now has good support for mirrori …
1
vote
Periodically copy revisions from one SVN repository to another active SVN repository
I see you need to make changes from both repositories.
You might be able to use the same svnsync idea to build a …
