6
votes
AnkhSVN Cannot Connect Due to Proxy
You can also use TortoiseSVN for editting the proxy settings.
TortoiseSVN saves the settings in the registry in the common location that all Subversion clients (by default) use.
…
1
vote
Subversion question
If you want to use the merge-tracking of Subversion 1.5 over more than one project at the same time you should use a single tree without externals.
A tracked merge is (just like a commit) a …
1
vote
Nuking huge file in svn repository
Once you removed the file from your HEAD revision, it doesn't slow you down on operation speed as ony deltas between revisions are handled.
(Repository backups must of course handle the load). …
19
votes
Which would you rather use: VisualSVN or AnkhSVN?
I'm one of the AnkhSVN developers, so I shall not comment on which you should choose.
But why don't you try for yourself?
VisualSVN has a 30 days trial, and AnkhSVN is free.
AnkhSVN …
3
votes
How to access the current Subversion build number?
Using c# and SharpSvn (from http://sharpsvn.net) the code would be:
//using SharpSvn;
long revision = -1;
using(SvnClient client = n …
0
votes
Structure of projects in version control - .NET specific
For bigger projects we usually use this format here:
/Project
/trunk
/lib/ # Binary imports here (not in svn)
/src # Solution file here …
2
votes
Getting specific revision via http with VisualSVN Server
Subversion does not publicly document the Uris it uses internally to access that information. (And where it is documented, it is explicitly stated that this can change in future versions)
T …
0
votes
How do you add all untracked files in svn? Something like git add -i?
TortoiseSVN has the option of showing unversioned files in the Commit and Show Changes dialogs. You can right click a file to 'Add' it or to mark it as ignored.
If you are using Visual Stud …
1
vote
Subversion large repos import/checkout
svn checkout --force lets you checkout a workingcopy 'over' an existing path. It keeps your old files and adds files that are only in your repository.
For creating your repository: You can …
1
vote
How do I get a list of files that have been added to the SVN since a certain date?
If you use 'svn log -v -q' you get the filename and no log messages. This is a little bit faster over http:// and svn:// as the log messages are not transferred to you.
svn log --xml -v -q …
2
votes
Very slow merge with Subversion 1.5 (and 1.4 Server)
We did some performance analysis on merging last weekend and found two severe performance issues. One of those was very Windows specific and made disk IO while merging much slower than needed and t …
1
vote
Subversion versus Vault
Subversion allows you to mark files as 'must-lock', in that case checkout (lock), checkin (commit with auto unlock) works. AnkhSVN visualizes this just like the VSS Check in check out.
Subv …
1
vote
How do I mirror a SVN repository on CodePlex?
The CodePlex repository runs SvnBridge instead of a real Subversion server. I don't think SvnBridge has svnsync support for receiving changes.
…
1
vote
Federated (Synced) Subversion servers?
Subversion 1.5 introduced write through proxy support for webdav servers over the existing SvnSync support that was added in 1.4. This allows you to have local mirrors for retrieving files and hist …
14
votes
SVN Libraries for .NET?
SharpSvn was desiged for .Net 2.0 and Subversion 1.5 and later. It integrates all subversion dependencies in a single set of dll that is directly usable from .Net (XCopy deployable). One of the oth …
