This may be particularly useful soon, when I'm going to change how `hg
rebase` sets its parents during conflict resolution.
Details
- Reviewers
durin42 - Group Reviewers
hg-reviewers - Commits
- rHG8561ad49915d: revset: add a revset for parents in merge state
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
mercurial/revset.py | ||
---|---|---|
1898 | The sentence looks incomplete. |
+@predicate(b'conflictparents()', safe=True)
+def parents(repo, subset, x):
^^^^^^^
Nit: copy-paste error?
relnotes/next | ||
---|---|---|
3 | Could we call this conflict_sides, using "parents" for things that are not actual parent might be confusing. What about having a local_conflict_side and other_conflict_side conflict_base revsets ? |
relnotes/next | ||
---|---|---|
3 | I've renamed them conflictlocal() and conflictother(). Hopefully that's clear enough and not too long. |
The sentence looks incomplete.