Message ID | pull.733.git.1600142634326.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | e40e9365510fc3d2decc91bd0939c2f520d2a7d6 |
Headers | show |
Series | commit-graph-format.txt: fix no-parent value | expand |
Hi Conor, On Tue, Sep 15, 2020 at 04:03:53AM +0000, Conor Davis via GitGitGadget wrote: > - of the ith commit. Stores value 0x7000000 if no parent in that > + of the ith commit. Stores value 0x70000000 if no parent in that Thnaks for fixing this up. This dates back to a9aa3c0927 (commit-graph: fix documentation inconsistencies, 2018-06-28) which mentions the correct value in the commit message, but uses the incorrect value in the patch itself. For what it's worth, I can hardly blame the author of a9aa3c0927, since I had to flip back and forth between the two a couple of times to convince myself which one was which. Anyway, this is obviously correct. Thank you for your contribution! Reviewed-by: Taylor Blau <me@ttaylorr.com> Thanks, Taylor
On 9/15/2020 12:26 AM, Taylor Blau wrote:
> For what it's worth, I can hardly blame the author of a9aa3c0927,
I can!
Thanks for noticing the doc bug. May I ask why you were looking
at the format document so closely? Are you working on a new
implementation?
Thanks,
-Stolee
On 9/15/20 7:16 AM, Derrick Stolee wrote: > On 9/15/2020 12:26 AM, Taylor Blau wrote: >> For what it's worth, I can hardly blame the author of a9aa3c0927, > I can! > > Thanks for noticing the doc bug. May I ask why you were looking > at the format document so closely? Are you working on a new > implementation? Yes, I'm adding commit-graph support to gitoxide: https://github.com/Byron/gitoxide/pull/21 -Conor
diff --git a/Documentation/technical/commit-graph-format.txt b/Documentation/technical/commit-graph-format.txt index 1beef17182..002a480c9c 100644 --- a/Documentation/technical/commit-graph-format.txt +++ b/Documentation/technical/commit-graph-format.txt @@ -77,7 +77,7 @@ CHUNK DATA: Commit Data (ID: {'C', 'D', 'A', 'T' }) (N * (H + 16) bytes) * The first H bytes are for the OID of the root tree. * The next 8 bytes are for the positions of the first two parents - of the ith commit. Stores value 0x7000000 if no parent in that + of the ith commit. Stores value 0x70000000 if no parent in that position. If there are more than two parents, the second value has its most-significant bit on and the other bits store an array position into the Extra Edge List chunk.