Search Results

4
votes

Using TortoiseSVN how do I merge changes from the trunk to a branch and vice versa?

The behavior depends on which version your repository has. Subversion 1.5 allows 4 types of merge: merge sourceURL1[@N] sourceURL2[@M] [WCPATH] merge sourceWCPATH1@N sourceWC …
3
votes

TortoiseSVN identifies modified file - so why does svn diff report no differences?

Diff with previous is a different command than looking what changed in your workingcopy. Previous is defined to be the version before the version you have in your workingcopy: …
0
votes

loaded a subversion dump but it’s inaccessible

I heard of a few cases where this was caused by adding a '/' at the end of the path in the <Location directive in the apache configuration. Please remove the '/' if you added one. …
3
votes

can i access svn+ssh://someAddress by webbrowser?

Using SVNProtocolHandler you can visit svn:// urls in Internet Explorer. It even supports the svn+ssh:// protocol, but it requ …
6
votes

What Visual Studio files should be ignored by subversion to eliminate or conflicts?

I think a better question would be "What files should I add to Subversion?" The AnkhSVN 2.0 Subversion integration asks exactly this question to all the projects in your solut …
0
votes

TortoiseSVN can’t connect to machine in workgroup

The Slik Subversion Client is IPv6 and IPv4 enabled, so if your system says it prefers IPv6. With the --listen-host argument you can choose how it should listen. …
1
vote

How do we keep track of our working copy’s branch?

In AnkhSVN (in Visual Studio) the project url of your working copy is from is displayed in the 'Working on' field of the Pending Changes Window (View->Pending Changes). The url of a file/fo …
1
vote

is there a special command i in TortoiseSvn menu to clear svn-relation of the directory ?

In TortoiseSVN you can export to the current directory. TortoiseSVN will then remove the .svn directories for you (after you confirm that this is what you want to do). This is not a standar …
2
votes

svn - Remote, Disconnected Working

Subversion assumes that filestamps have at least a 1 second precision to check if files have changed but the FAT filesystem on most USB drives supports only 2 second precision. Theoretically it can …
3
votes

Any latest experiences from recent daily build of AnkhSVN?

AnkhSVN and TortoiseSVN use the same administrative data that is stored in your working copy. This store is used for all management, so they will always see each other administrative changes and th …
1
vote

What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?

There are several tools that can migrate history for you. We used VSS2SVN a few years ago to make this same step. You c …