Commit ee98c9fd authored by laforge@chromium.org's avatar laforge@chromium.org

Add eol ignore logic to make webkit merges less problematic.

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@34895 0039d316-1c4b-4281-b951-d872f2087c98
parent 004d2efe
......@@ -228,6 +228,7 @@ def mergeRevision(url, revision):
continue
command = ('svn merge -N -r ' + str(revision-1) + ":" + str(revision) + " ")
command += " --ignore-ancestry "
command += " -x ignore-eol-style "
command += url + path + "@" + str(revision) + " ." + path
print command
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment