Details
Details
- Reviewers
- None
- Group Reviewers
hg-reviewers - Commits
- rHG9421d7e12888: phabricator: include commit (node) and parent in the local:commits metadata
Diff Detail
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
hgext/phabricator.py | ||
---|---|---|
403 | What about p2? |
hgext/phabricator.py | ||
---|---|---|
403 | I left it out since the "hg:meta" code only writes p1 ( b'parent': ctx.p1().hex(),) and getdiffmeta doesn't read p2 from either "hg:meta" or "local:commits": if len(commit.get(b'parents', ())) >= 1: meta[b'parent'] = commit[b'parents'][0] Adding it to all three could be a followup. |
What about p2?