Open GoogleCodeExporter opened 9 years ago
The test is using "lock.strategy=prop"
Original comment by freddie....@gmail.com
on 27 Oct 2010 at 5:23
Original comment by daggett....@gmail.com
on 27 Oct 2010 at 10:39
We are getting this issue in PB 12.5.1, with SVN 1.7 r22413, and PBSCC 2.01.80.
Sometimes the differences are shown, for a few seconds, particularly when
logging is turned on. But then after a few seconds, SVN DIFF
offers to refresh the working file:
"Some File(s) has been changed outside T-Merge. Do you want to load the
changes?"
And if I answer Yes, the differences disappear.
In
http://code.google.com/p/pbscc-proxy/source/browse/trunk/src/pbscc.cpp?r=25#954
I see
if( ( svni = ctx->svni->get(ctx->lpProjPath,lpFileName))!=NULL ) {
if(!stricmp(svni->owner,ctx->lpUser)){
_copyfile(ctx,lpFileName, _subst(ctx,lpFileName) );
buf.sprintf("TortoiseProc.exe /command:diff /path:\"%s\"", _subst(ctx,lpFileName) );
WinExec(buf.c_str(), SW_SHOW);
_execscc(ctx,"svn revert --non-interactive --trust-server-cert \"%s\"", _subst(ctx,lpFileName) );
return SCC_OK;
}
}
Why is the svn revert there, and do you think it could be related to this
problem?
Original comment by toff.til...@gmail.com
on 18 Apr 2012 at 8:11
As a workaround, you can install WinMerge with TortoiseSVN integration. It
doesn't automatically refresh the underlying files when they change, so the
differences are maintained in the window.
Original comment by toff.til...@gmail.com
on 18 Apr 2012 at 9:50
probably "revert" is a reason of this problem.
the idea of this code is
to copy changed object over work copy,
then call diff, then revert changes from work copy.
it's possible to use
TortoiseProc.exe /command:diff /path:%1 /path2:%2
in this case revert is not needed.
Original comment by daggett....@gmail.com
on 19 Apr 2012 at 8:40
Hi all,
I can propose my "local patch" in attachment.
It add 3 registry keys :
- svndiff_delay : a delay in milliseconds to wait between "TortoiseProc.exe"
and "svn revert"
- svn.diffmethod : "0" is for previous method, "1" is to create a temp copy of
the file to be compared, running TortoiseMerge then cleaning up the temporary
file.
- svn.postupdatecmd : allow to run Tortoise Hooks after updates. (eg:
"TortoiseProc.exe /Command:update /Path:\"%s\" /closeonend:1")
Original comment by famille....@gmail.com
on 19 Nov 2012 at 3:39
Attachments:
Original issue reported on code.google.com by
freddie....@gmail.com
on 27 Oct 2010 at 5:16