"Bug" in Update and Merge
From: Carlo Hogeveen <Carlo.Hogeveen_at_nccw.nl>
Date: 2005-11-18 13:57:16 CET
When updating or merging SVN either merges differences or generates a
Obviously this is not a bug in the SVN application. It is just how SVN
I am contemplating making all files binary in SVN to avoid automatic
Example, as tested with SVN:
The program below is in the repository, and checked out by Harry and
salary = 1000
salary = salary + bonus
// Isn't that too bad: We also have to pay taxes.
print salary
Harry changes his working copy to the program below, and checks it in:
salary = 1000
salary = salary + bonus - taxes
// Isn't that too bad: We also have to pay taxes.
print salary
Sally changes her working copy to the program below, does a "successful"
salary = 1000
salary = salary + bonus
// Isn't that too bad: We also have to pay taxes.
salary = salary - taxes
The repository now contains the end-result, which is a program that
salary = 1000
salary = salary + bonus - taxes
// Isn't that too bad: We also have to pay taxes.
salary = salary - taxes
---------------------------------------------------------------------
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.