Show More
@@ -344,6 +344,12 b" coreconfigitem('http_proxy', 'passwd'," | |||
|
344 | 344 | coreconfigitem('http_proxy', 'user', |
|
345 | 345 | default=None, |
|
346 | 346 | ) |
|
347 | coreconfigitem('merge', 'checkunknown', | |
|
348 | default='abort', | |
|
349 | ) | |
|
350 | coreconfigitem('merge', 'checkignored', | |
|
351 | default='abort', | |
|
352 | ) | |
|
347 | 353 | coreconfigitem('merge', 'followcopies', |
|
348 | 354 | default=True, |
|
349 | 355 | ) |
@@ -603,7 +603,7 b' class mergestate(object):' | |||
|
603 | 603 | self._results[f] = 0, 'g' |
|
604 | 604 | |
|
605 | 605 | def _getcheckunknownconfig(repo, section, name): |
|
606 |
config = repo.ui.config(section, name |
|
|
606 | config = repo.ui.config(section, name) | |
|
607 | 607 | valid = ['abort', 'ignore', 'warn'] |
|
608 | 608 | if config not in valid: |
|
609 | 609 | validstr = ', '.join(["'" + v + "'" for v in valid]) |
General Comments 0
You need to be logged in to leave comments.
Login now