Hello,
svn 1.6.9
I have my development (dev) machine and a target testing machine (test)
However, If I make some changes on my dev machine, that should cause a conflict on the test machine when I update, as I have modified the same line code in the same file.
example
(dev)
main.c
void get_device(int device_id);
(test)
main.c
void get_device(int device_id);
Both have exactly the same. Now when I change the prototype of dev to this:
char* get_device(int device_id);
Then commit that change.
When I update on the test machine. Shouldn't it not cause a conflict as I have modified the same line of code? All I get when I update is the following:
U main.c
Should it not show me that there is a line of code which is in conflict? Instead of just updating the line of code?
However, if I make some minor changes to the test machine, then I try and commit. Then it fails to commit. Then when I try and update it will then show me the conflict for changing void to char* in that line.
It seems to me if I change the same line of code, I want to be notified of any conflicts when I try and update.
Many thanks for any suggestions,