0
votes
How do I move tags in Subversion
One way would be to move to a "stable trunk" model.
Make a branch from trunk to use as your working area.
Stop making commits directly to trunk - have everyone switch to the …
0
votes
TFS vs open source alternatives?
We've built up a development stack gradually here, we're currently using:
Subversion
CruiseControl
RedMine (integrates bug tracking with source control and includes …
1
vote
How do I sync between VSS and SVN
You could also treat this as a vendor supplied branch as defined in the redbean book:
Vendor Branches …
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 …
2
votes
Sending SVN commits to an RSS feed
I've just tried sventon with good results. It's a web based SVN viewer, reasonable in what it does, but provides a good RSS feed at whatever leve …
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 …
0
votes
How do I mirror an SVN repo dir structure in my working dir without a full root checkout?
Ok, first and foremost, the way you're working is like to cause problems, ultimately.
The principle your looking for is that each project should have a trunk/branches/tags structure which i …
0
votes
SVN client on windows without administrator rights
RapidSVN works quite happily without being installed.
Unfortunately - it's only packaged as an installer exe.
What you need to do is install RapidSVN on some machine where you DO ha …
1
vote
Connecting to my Home Version Control Repository remotely?
You can use RapidSVN on a memory stick as a graphical SVN client.
The download is an installer, but after you've installed it, you can copy …
1
vote
Can an SVN client break the repository?
If a client can break the repository in any way that requires a repository restore it's considered a very serious bug by the Subversion folks.
A quick look on their bug-tracker shows that t …
3
votes
Subversion - Merging Repositories
Please please please don't force your users to checkout an entire repository to get things to build. This is harking back to the old sourcesafe model and it wasn't good then.
Having one rep …
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 …
