diff options
author | Justin Lebar <jlebar@google.com> | 2014-03-31 15:11:44 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-31 15:16:22 -0700 |
commit | a58088abe2011b6f486de8acd54432f6d9bcecfc (patch) | |
tree | fdae618dee73d4a349c80321896d4f4a58344c35 /Documentation/merge-options.txt | |
parent | cee0c2750bb5f1b38f15ef961517e03c2e39c9ec (diff) | |
download | git-a58088abe2011b6f486de8acd54432f6d9bcecfc.tar.gz git-a58088abe2011b6f486de8acd54432f6d9bcecfc.tar.xz |
Documentation: fix misuses of "nor"
Signed-off-by: Justin Lebar <jlebar@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/merge-options.txt')
-rw-r--r-- | Documentation/merge-options.txt | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Documentation/merge-options.txt b/Documentation/merge-options.txt index e1343155f..f08e9b80c 100644 --- a/Documentation/merge-options.txt +++ b/Documentation/merge-options.txt @@ -63,14 +63,13 @@ merge. --squash:: --no-squash:: - Produce the working tree and index state as if a real - merge happened (except for the merge information), - but do not actually make a commit or - move the `HEAD`, nor record `$GIT_DIR/MERGE_HEAD` to - cause the next `git commit` command to create a merge - commit. This allows you to create a single commit on - top of the current branch whose effect is the same as - merging another branch (or more in case of an octopus). + Produce the working tree and index state as if a real merge + happened (except for the merge information), but do not actually + make a commit, move the `HEAD`, or record `$GIT_DIR/MERGE_HEAD` + (to cause the next `git commit` command to create a merge + commit). This allows you to create a single commit on top of + the current branch whose effect is the same as merging another + branch (or more in case of an octopus). + With --no-squash perform the merge and commit the result. This option can be used to override --squash. |