Re: Git commit generation numbers
From: George Spelvin <hidden>
Date: 2016-06-15 22:51:38
On [off-list ref] wrote:
On Wed, 20 Jul 2011, Shawn Pearce wrote:quoted
If the algorithm is always "gen(A) = max(gen(P) for each parent_of(A)) + 1" then it doesn't matter who merged what commits, the same commit appears at the same part of the graph relative to all of its ancestors, and therefore always has the same generation number. This is true whether or not the commit contains the generation number.
I have to think about this more, but I'm wondering about cases where the same result ia achieved via different methods, something along the lines of one person developing something with _many_ commits (creating a large generation number) that one person merges far sooner than another, causing the commits that they do after the merge to have much larger generation numbers than someone making the same changes, but doing the merge later
Can't happen. Using the basic algorithm as Shawn described, the generation number is defined uniquely by the ancestor DAG. The generation number is the length of the longest path to a root (zero-ancestor) commit through the DAG. If you look at past discussion, several people have thought it was okay to bake into the commit precsiely because it can be computed once and will never change. However, git does have some ability to amend the history DAG after it's been written, using grafts and replace objects. These can change generation numbers, presisely because they change the DAG.
something like
C9
\
C2 - C10 - C11 - C12
vs
C9
\
C2 - C3 - C4 - C5 - C10
where the C10-12 in the first set and C3-5 in the second set are
completely unrelated to what's done in C9 and C12 in the first set
and C10 in the second set are identical trees.The generation numbers in the above are as follows: First example: C2 = C9 = 0 C10 = 1 = max(C2, C9) + 1 C11 = 2 = C10 + 1 C12 = 3 = C11 + 1 Second example: C2 = C9 = 0 C3 = 1 = C2 + 1 C4 = 2 = C2 + 1 C5 = 3 = C4 + 1 C10 = 4 = max(C5, C9) + 1 Now, the history pruning works fine if the "+1" is replaced my any other non-zero increment, but it's not clear why you'd bother.