tags:

views:

51

answers:

2

When I do a Svn up in a file with a local modification that can produce a conflict.

Is it possible to cancel svn update with a hook and write a message?

Thanks

A: 

i dont think there is a subversion hook for svn update

solomongaby
A: 

Why do you want to do this? Just resolve the conflict by choosing your copy of the file (you could even do this automatically on update with --accept mine-conflict).

Michael Hackner
NSchubhan
Updates are client-side and there is no reason why it should matter if someone leaves a conflict in their working copy. If rather than update you mean `commit`, you don't need to worry because you can't commit if there is a conflict.
Michael Hackner