git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* ancestor and descendant ~ clarification needed
@ 2015-10-22  9:06 Xue Fuqiao
  2015-10-22 12:58 ` Etienne Girard
  2015-10-22 20:22 ` Junio C Hamano
  0 siblings, 2 replies; 7+ messages in thread
From: Xue Fuqiao @ 2015-10-22  9:06 UTC (permalink / raw
  To: Git

Hi,

In Documentation/user-manual.txt:

   In the following, we say that commit X is "reachable" from commit Y
   if commit X is an ancestor of commit Y.  Equivalently, you could say
   that Y is a descendant of X, or that there is a chain of parents
   leading from commit Y to commit X.
[...]
   However, if the current branch is a descendant of the other--so every
   commit present in the one is already contained in the other--then Git
   just performs a "fast-forward"; the head of the current branch is
   moved forward to point at the head of the merged-in branch, without
   any new commits being created.

I'm a Git newbie.  According to my understanding, the "descendant" in
the second paragraph above should be "ancestor".  I attempt to represent
my understanding using the following diagram (please see it in a
monospaced font):

................................................

         o--o--o <-- Branch A
        /
 o--o--o <-- master

................................................

"master" is the current branch, and (as I understand it) it is an
ancestor of "Branch A", because there is a chain of parents leading from
"Branch A" to master.  So "Branch A" (i.e., "the other" branch, or the
"merged-in" branch) is a descendant of master.  I even set up a test
repository and attempted to test the above diagram with "git merge-base
--is-ancestor" (and "echo $?"), but it seems to me that the master
branch is *not* a descendant of "Branch A".

I hope you can understand my words here (English is not my native
language).  Can anyone point me in the right direction (what am I
missing)?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ancestor and descendant ~ clarification needed
  2015-10-22  9:06 ancestor and descendant ~ clarification needed Xue Fuqiao
@ 2015-10-22 12:58 ` Etienne Girard
  2015-10-22 20:22 ` Junio C Hamano
  1 sibling, 0 replies; 7+ messages in thread
From: Etienne Girard @ 2015-10-22 12:58 UTC (permalink / raw
  To: Xue Fuqiao; +Cc: Git

Hello,

I think you're right, branch A is a descendant of master. We could
change the misleading sentence to "However, if the current branch is a
descendant of the other - if its head is a descendant of the other's
head - [...]", to link back to the definition of descendant for
commits.

2015-10-22 11:06 GMT+02:00 Xue Fuqiao <xfq.free@gmail.com>:
> Hi,
>
> In Documentation/user-manual.txt:
>
>    In the following, we say that commit X is "reachable" from commit Y
>    if commit X is an ancestor of commit Y.  Equivalently, you could say
>    that Y is a descendant of X, or that there is a chain of parents
>    leading from commit Y to commit X.
> [...]
>    However, if the current branch is a descendant of the other--so every
>    commit present in the one is already contained in the other--then Git
>    just performs a "fast-forward"; the head of the current branch is
>    moved forward to point at the head of the merged-in branch, without
>    any new commits being created.
>
> I'm a Git newbie.  According to my understanding, the "descendant" in
> the second paragraph above should be "ancestor".  I attempt to represent
> my understanding using the following diagram (please see it in a
> monospaced font):
>
> ................................................
>
>          o--o--o <-- Branch A
>         /
>  o--o--o <-- master
>
> ................................................
>
> "master" is the current branch, and (as I understand it) it is an
> ancestor of "Branch A", because there is a chain of parents leading from
> "Branch A" to master.  So "Branch A" (i.e., "the other" branch, or the
> "merged-in" branch) is a descendant of master.  I even set up a test
> repository and attempted to test the above diagram with "git merge-base
> --is-ancestor" (and "echo $?"), but it seems to me that the master
> branch is *not* a descendant of "Branch A".
>
> I hope you can understand my words here (English is not my native
> language).  Can anyone point me in the right direction (what am I
> missing)?
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ancestor and descendant ~ clarification needed
  2015-10-22  9:06 ancestor and descendant ~ clarification needed Xue Fuqiao
  2015-10-22 12:58 ` Etienne Girard
@ 2015-10-22 20:22 ` Junio C Hamano
  2015-10-23  7:29   ` Xue Fuqiao
  1 sibling, 1 reply; 7+ messages in thread
From: Junio C Hamano @ 2015-10-22 20:22 UTC (permalink / raw
  To: Xue Fuqiao; +Cc: Git

Xue Fuqiao <xfq.free@gmail.com> writes:

> In Documentation/user-manual.txt:
>
>    In the following, we say that commit X is "reachable" from commit Y
>    if commit X is an ancestor of commit Y.  Equivalently, you could say
>    that Y is a descendant of X, or that there is a chain of parents
>    leading from commit Y to commit X.
> [...]
>    However, if the current branch is a descendant of the other--so every
>    commit present in the one is already contained in the other--then Git
>    just performs a "fast-forward"; the head of the current branch is
>    moved forward to point at the head of the merged-in branch, without
>    any new commits being created.

Yeah, that is the other way around.

 (1) If the current branch is a descendant of the other--so every
     commit present in the other branch is already contained in the
     current branch--then merging the other branch into the current
     branch is a no-op "Already up-to-date!".

 (2) If the current branch is an ancestor of the other--so every
     commit present in the current branch is already contained in
     the other branch--then merging the other branch into the
     current branch can be fast-forwarded, by moving the tip of the
     current branch to point at the commit at the tip of the other
     branch, and by default Git does so, instead of creating an
     unnecessary merge.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ancestor and descendant ~ clarification needed
  2015-10-22 20:22 ` Junio C Hamano
@ 2015-10-23  7:29   ` Xue Fuqiao
  2015-10-23 16:56     ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Xue Fuqiao @ 2015-10-23  7:29 UTC (permalink / raw
  To: Junio C Hamano; +Cc: Git

Hi Junio,

On Fri, Oct 23, 2015 at 4:22 AM, Junio C Hamano <gitster@pobox.com> wrote:

> Yeah, that is the other way around.
>
>  (1) If the current branch is a descendant of the other--so every
>      commit present in the other branch is already contained in the
>      current branch--then merging the other branch into the current
>      branch is a no-op "Already up-to-date!".
>
>  (2) If the current branch is an ancestor of the other--so every
>      commit present in the current branch is already contained in
>      the other branch--then merging the other branch into the
>      current branch can be fast-forwarded, by moving the tip of the
>      current branch to point at the commit at the tip of the other
>      branch, and by default Git does so, instead of creating an
>      unnecessary merge.

I see.  Thank you.  What do you think about the following minor patch
for user-manual.txt?  I can send a more formal one using format-patch
and send-email if needed.

diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt
index 1b7987e..d68df13 100644
--- a/Documentation/user-manual.txt
+++ b/Documentation/user-manual.txt
@@ -1431,11 +1431,11 @@ differently.  Normally, a merge results in a
merge commit, with two
 parents, one pointing at each of the two lines of development that
 were merged.

-However, if the current branch is a descendant of the other--so every
-commit present in the one is already contained in the other--then Git
-just performs a "fast-forward"; the head of the current branch is moved
-forward to point at the head of the merged-in branch, without any new
-commits being created.
+However, if the current branch is an ancestor of the other--so every commit
+present in the current branch is already contained in the other
branch--then Git
+just performs a "fast-forward"; the head of the current branch is moved forward
+to point at the head of the merged-in branch, without any new commits being
+created.

 [[fixing-mistakes]]
 Fixing mistakes

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: ancestor and descendant ~ clarification needed
  2015-10-23  7:29   ` Xue Fuqiao
@ 2015-10-23 16:56     ` Junio C Hamano
  2015-10-23 23:11       ` Xue Fuqiao
  0 siblings, 1 reply; 7+ messages in thread
From: Junio C Hamano @ 2015-10-23 16:56 UTC (permalink / raw
  To: Xue Fuqiao; +Cc: Git

Xue Fuqiao <xfq.free@gmail.com> writes:

> Hi Junio,
>
> On Fri, Oct 23, 2015 at 4:22 AM, Junio C Hamano <gitster@pobox.com> wrote:
>
>> Yeah, that is the other way around.
>>
>>  (1) If the current branch is a descendant of the other--so every
>>      commit present in the other branch is already contained in the
>>      current branch--then merging the other branch into the current
>>      branch is a no-op "Already up-to-date!".
>>
>>  (2) If the current branch is an ancestor of the other--so every
>>      commit present in the current branch is already contained in
>>      the other branch--then merging the other branch into the
>>      current branch can be fast-forwarded, by moving the tip of the
>>      current branch to point at the commit at the tip of the other
>>      branch, and by default Git does so, instead of creating an
>>      unnecessary merge.
>
> I see.  Thank you.  What do you think about the following minor patch
> for user-manual.txt?

While the updated text is more correct than the original, I do not
know if that is sufficient, or we would also want to mention the
"Already up-to-date!" case here while at it.

> -However, if the current branch is a descendant of the other--so every
> -commit present in the one is already contained in the other--then Git
> -just performs a "fast-forward"; the head of the current branch is moved
> -forward to point at the head of the merged-in branch, without any new
> -commits being created.
> +However, if the current branch is an ancestor of the other--so every commit
> +present in the current branch is already contained in the other
> branch--then Git
> +just performs a "fast-forward"; the head of the current branch is moved forward
> +to point at the head of the merged-in branch, without any new commits being
> +created.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ancestor and descendant ~ clarification needed
  2015-10-23 16:56     ` Junio C Hamano
@ 2015-10-23 23:11       ` Xue Fuqiao
  2015-10-24 16:42         ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Xue Fuqiao @ 2015-10-23 23:11 UTC (permalink / raw
  To: Junio C Hamano; +Cc: Git

On Sat, Oct 24, 2015 at 12:56 AM, Junio C Hamano <gitster@pobox.com> wrote:
>> I see.  Thank you.  What do you think about the following minor patch
>> for user-manual.txt?
>
> While the updated text is more correct than the original, I do not
> know if that is sufficient, or we would also want to mention the
> "Already up-to-date!" case here while at it.

I thought about that, and IMHO it's not needed.  The section name is
"Fast-forward merges" and intends to introduce the "fast-forward"
concept, which is irrelevant to "Already up-to-date!".  Although the
"Already up-to-date!" case isn't mentioned all over the manual, it's
pretty clear to me (as someone who isn't quite familiar with Git).

>> -However, if the current branch is a descendant of the other--so every
>> -commit present in the one is already contained in the other--then Git
>> -just performs a "fast-forward"; the head of the current branch is moved
>> -forward to point at the head of the merged-in branch, without any new
>> -commits being created.
>> +However, if the current branch is an ancestor of the other--so every commit
>> +present in the current branch is already contained in the other
>> branch--then Git
>> +just performs a "fast-forward"; the head of the current branch is moved forward
>> +to point at the head of the merged-in branch, without any new commits being
>> +created.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: ancestor and descendant ~ clarification needed
  2015-10-23 23:11       ` Xue Fuqiao
@ 2015-10-24 16:42         ` Junio C Hamano
  0 siblings, 0 replies; 7+ messages in thread
From: Junio C Hamano @ 2015-10-24 16:42 UTC (permalink / raw
  To: Xue Fuqiao; +Cc: Git

Xue Fuqiao <xfq.free@gmail.com> writes:

> On Sat, Oct 24, 2015 at 12:56 AM, Junio C Hamano <gitster@pobox.com> wrote:
>>> I see.  Thank you.  What do you think about the following minor patch
>>> for user-manual.txt?
>>
>> While the updated text is more correct than the original, I do not
>> know if that is sufficient, or we would also want to mention the
>> "Already up-to-date!" case here while at it.
>
> I thought about that, and IMHO it's not needed.  The section name is
> "Fast-forward merges" and intends to introduce the "fast-forward"
> concept, which is irrelevant to "Already up-to-date!".

Okay.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-10-24 16:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-22  9:06 ancestor and descendant ~ clarification needed Xue Fuqiao
2015-10-22 12:58 ` Etienne Girard
2015-10-22 20:22 ` Junio C Hamano
2015-10-23  7:29   ` Xue Fuqiao
2015-10-23 16:56     ` Junio C Hamano
2015-10-23 23:11       ` Xue Fuqiao
2015-10-24 16:42         ` Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).