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 …
2
votes
Can you keep Visual Studio source control binding info out of .sln and .csproj files?
AnkhSVN 2.0 has two modes of operation.
Connected (recommended). This stores binding information in the .sln and optionally project files.
Disconnected. This does not store 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 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
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 …
1
vote
Any tips for using Subversion with .net project files?
Are you sure your project file is not marked as binary? If your .vbproj file has a svn:mime-type property with a value that doesn't start with 'text/' Subversions automatic merging will be disabled …
5
votes
Source Control with Visual Studio: switch from VisualSVN to Ankh?
AnkhSVN works with any Subversion server and VisualSVN Server is one of the easiest to configure servers for Windows.
If you need to share projects and solutions between VisualSVN and AnkhS …
7
votes
How to set a property in SVN for a single revision of a single file
Subversion has two kinds of properties
Properties on a file or directory. These properties are versioned
Revision properties. These are specific to the reversion on which the …
1
vote
SVN? VSS? Why is one better than the other?
The old argument of integration in Visual Studio doesn't work any more. AnkhSVN 2.0 delivers an integrated solution and …
1
vote
Control non-solution files with AnkhSVN
In many project types you can add files marked as 'content' or 'none' in the properties grid
These files won't be part of the build of your project, but these files are part of the solution …
4
votes
AnkhSVN - keep local copy and get latest version
[Unrelated: Please remove your e-mail address from your question if you don't want to receive spam.. you can be notified on updates via RSS and mail via your profile settings].
The 'folders …
1
vote
Which would you rather use: VisualSVN or AnkhSVN?
See also:
http://stackoverflow.com/questions/423687/which-plugin-do-you-use-for-using- …
-1
votes
Why does C# designer-generated code (like Form1.designer.cs) play havoc with Subversion?
If you convert files from VSS to Subversion (with migrating history) you should make sure that your sourcefiles are not marked as binary.
Visual Sourcesafe was invented before UTF-8, and it …
0
votes
Is there a c# library for wrapping multiple SCM provider’s APIs?
I would recommend not to use MSSCCI as abstraction layer, as that old style SCC api is fully modeled after the checkout-checkin principal promoted by VSS.
Most newer Source Control systems …
1
vote
examining history of deleted file
When you want to look at old files you really should know the difference between:
svn cat http://server/svn/project/file -r 1234
and
svn cat http:/ …
