Index: drover.py |
=================================================================== |
--- drover.py (revision 29694) |
+++ drover.py (working copy) |
@@ -172,7 +172,8 @@ |
if export_map.has_key(path): |
continue |
command = ('svn merge -N -r ' + str(revision-1) + ":" + str(revision) + " ") |
- command = command + url + path + "@" + str(revision) + " ." + path |
+ command += " --ignore-ancestry " |
+ command += url + path + "@" + str(revision) + " ." + path |
print command |
os.system(command) |