##// END OF EJS Templates
commit: clear resolved mergestate even if working copy is clean...
Martin von Zweigbergk -
r44919:6a34e438 default
parent child Browse files
Show More
@@ -2956,6 +2956,7 b' class localrepository(object):'
2956 or self.ui.configbool(b'ui', b'allowemptycommit')
2956 or self.ui.configbool(b'ui', b'allowemptycommit')
2957 )
2957 )
2958 if not allowemptycommit:
2958 if not allowemptycommit:
2959 ms.reset()
2959 return None
2960 return None
2960
2961
2961 if merge and cctx.deleted():
2962 if merge and cctx.deleted():
@@ -61,6 +61,9 b''
61 * `hg debugmergestate` output format changed. Let us know if that is
61 * `hg debugmergestate` output format changed. Let us know if that is
62 causing you problems and we'll roll it back.
62 causing you problems and we'll roll it back.
63
63
64 * Resolved merge conflicts are now cleared by `hg commit` even if the
65 working copy has no changes.
66
64
67
65 == Internal API Changes ==
68 == Internal API Changes ==
66
69
@@ -357,7 +357,6 b' Try to make empty commit while there are'
357 nothing changed
357 nothing changed
358 [1]
358 [1]
359 $ hg resolve -l
359 $ hg resolve -l
360 R a
361
360
362 Change/delete conflict is not allowed
361 Change/delete conflict is not allowed
363 $ hg up -qC 3
362 $ hg up -qC 3
General Comments 0
You need to be logged in to leave comments. Login now