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

Re: [TSVN] Auto merge not wanted, how can it be turned off?

From: C William Underwood <cwillu_at_sasktel.net>
Date: 2004-06-18 08:38:34 CEST

Eric J. Smith wrote:

> In your sample the same developer would have to also change the line at the
> bottom of the function since he changed the name of the variable. So in
> your case it would've caused a merge conflict and you would need to resolve
> it manually.

original:
{
   int foo;
   foo=5;
   println(foo);

   //some more lines of code not touching foo
}

dev 1's commit:
{
   int index;
   index=5;
   println(index);

   //some more lines of code not touching foo
}

dev 2's commit:
{
   int foo;
   foo=5;
   println(foo);

   //some more lines of code not touching foo

   delete(foo);
}

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
Received on Fri Jun 18 09:49:39 2004

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.