Add --ignore-history to merge command (only applicable to branch merges).

Review URL: http://codereview.chromium.org/292052

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@29699 0039d316-1c4b-4281-b951-d872f2087c98
experimental/szager/collated-output
laforge@chromium.org 16 years ago
parent 0645c60336
commit 94ed5021d8

@ -172,7 +172,8 @@ def mergeRevision(url, revision):
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)

Loading…
Cancel
Save