[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: TSVN reports that all targets are not part of same working copy when there is an svn:external that points within the repository

From: Ryan J Ollos <ryano_at_physiosonics.com>
Date: Mon, 11 Apr 2011 15:28:05 -0700 (PDT)

Hans-Emil Skogh wrote:
>
> Maybe you could just drop an heads-up mail on the SVN-dev mailing list?
> Add some links to this thread. That's a good start to raise awareness (if
> needed) as well as discussion and eventually to get the issue into the
> core SVN issue tracker.
>

Here is a batch file [1] that reproduces the issues with the command line
client. Just drop it into a directory with svnadmin.exe and svn.exe from
[2].

The versions I produced this issue with are:

svn, version 1.7.0-dev(r1088319)
svnadmin, version 1.7.0-dev(r1088319)

I'll be posting to a new thread on the svn mailing list tonight and will add
a reference to this ticket.

[1]

SET ROOTDIR=%cd%
SET REPOS=TestWorkingCopyWithExternals
SET REPOS_PATH=file:///%ROOTDIR%/%REPOS%
SET WC=%REPOS%-wc
SET SVN=%ROOTDIR%/svn.exe
SET SVNADMIN=%ROOTDIR%\svnadmin.exe

IF EXIST %REPOS% rmdir /s /q %REPOS%
IF EXIST %WC% rmdir /s /q %WC%

%SVNADMIN% create %REPOS%
%SVN% co %REPOS_PATH% %WC%
cd %WC%
mkdir proj1 proj2
%SVN% add proj1 proj2
%SVN% propset svn:externals "^/proj2 proj2" "proj1/"
%SVN% ci -m "" proj1 proj2
%SVN% up

echo proj1 > proj1/file1.txt
echo proj2 > proj2/file2.txt
%SVN% add proj1/file1.txt proj2/file2.txt
%SVN% ci -m ""
%SVN% up

cd proj1
echo > file3.txt
echo > proj2/file4.txt
%SVN% add file3.txt proj2/file4.txt
%SVN% ci -m "" file3.txt proj2/file4.txt
cd ../..

[2] http://nightlybuilds.tortoisesvn.net/latest/x64/small/

-- 
View this message in context: http://old.nabble.com/TSVN-reports-that-all-targets-are-not-part-of-same-working-copy-when-there-is-an-svn%3Aexternal-that-points-within-the-repository-tp31103921p31374502.html
Sent from the tortoisesvn - dev mailing list archive at Nabble.com.
------------------------------------------------------
http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=757&dsMessageId=2718973
To unsubscribe from this discussion, e-mail: [dev-unsubscribe_at_tortoisesvn.tigris.org].
Received on 2011-04-12 00:28:08 CEST

This is an archived mail posted to the TortoiseSVN Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.