diff options
author | Kristoffer Haugsbakk <kristoffer.haugsbakk@gmail.com> | 2016-12-09 16:51:11 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-12-09 15:14:01 -0800 |
commit | c857c3a1ceeeb31cfb90606e1d412f838f4a653d (patch) | |
tree | a09b77183a9b85a228601b13bb8dd32300c153a8 | |
parent | f383e4ed539f315206743b2859b2cce302c1d785 (diff) | |
download | git-c857c3a1ceeeb31cfb90606e1d412f838f4a653d.tar.gz |
doc: make the intent of sentence clearer
By adding the word "just", which might have been accidentally omitted.
Adding the word "just" makes it clear that the point is to *not* do an
octopus merge simply because you *can* do it. In other words, you
should have a reason for doing it beyond simply having two (seemingly)
independent commits that you need to merge into another branch, since
it's not always the best approach.
The previous sentence made it look more like it was trying to say that
you shouldn't do an octopus merge *because* you can do an octopus merge.
Although this interpretation doesn't make sense and the rest of the
paragraph makes the intended meaning clear, this adjustment should make
the intent of the sentence more immediately clear to the reader.
Signed-off-by: Kristoffer Haugsbakk <kristoffer.haugsbakk@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/gitcore-tutorial.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/gitcore-tutorial.txt b/Documentation/gitcore-tutorial.txt index 72ed90ca3b..72ca9c1ef1 100644 --- a/Documentation/gitcore-tutorial.txt +++ b/Documentation/gitcore-tutorial.txt @@ -1635,7 +1635,7 @@ $ git show-branch ++* [master~2] Pretty-print messages. ------------ -Note that you should not do Octopus because you can. An octopus +Note that you should not do Octopus just because you can. An octopus is a valid thing to do and often makes it easier to view the commit history if you are merging more than two independent changes at the same time. However, if you have merge conflicts |