diff options
author | Conor Davis <git@conor.fastmail.fm> | 2020-09-15 04:03:53 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-09-15 14:34:34 -0700 |
commit | e40e9365510fc3d2decc91bd0939c2f520d2a7d6 (patch) | |
tree | 00cc39550c5c7e6a99670e45f41f82028af2ebc9 /Documentation/technical | |
parent | Git 2.28 (diff) | |
download | tgif-e40e9365510fc3d2decc91bd0939c2f520d2a7d6.tar.xz |
commit-graph-format.txt: fix no-parent value
The correct value from commit-graph.c:
#define GRAPH_PARENT_NONE 0x70000000
Signed-off-by: Conor Davis <git@conor.fastmail.fm>
Reviewed-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/technical')
-rw-r--r-- | Documentation/technical/commit-graph-format.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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. |