diff options
author | Danny Lin <danny0838@gmail.com> | 2015-05-07 15:52:33 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-05-07 11:03:32 -0700 |
commit | 6ccc71a9d02726d59c1de818febf85a836f4e418 (patch) | |
tree | 7691f2ae348a7d16b2863dc10124738529c6e2c5 /contrib/subtree | |
parent | 16018ae5fb368151f3eff13730cf089b63f41962 (diff) | |
download | git-6ccc71a9d02726d59c1de818febf85a836f4e418.tar.gz |
contrib/subtree: there's no push --squashdl/subtree-push-no-squash
The documentation says that --squash is for 'add', 'merge',
'pull' and 'push', while --squash actually doesn't change
the behavior of 'push'. Correct the documentation.
Signed-off-by: Danny Lin <danny0838@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/subtree')
-rwxr-xr-x | contrib/subtree/git-subtree.sh | 2 | ||||
-rw-r--r-- | contrib/subtree/git-subtree.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/subtree/git-subtree.sh b/contrib/subtree/git-subtree.sh index fa1a5839af..6328c87bc8 100755 --- a/contrib/subtree/git-subtree.sh +++ b/contrib/subtree/git-subtree.sh @@ -26,7 +26,7 @@ b,branch= create a new branch from the split subtree ignore-joins ignore prior --rejoin commits onto= try connecting new tree to an existing one rejoin merge the new branch back into HEAD - options for 'add', 'merge', 'pull' and 'push' + options for 'add', 'merge', and 'pull' squash merge subtree changes as a single commit " eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)" diff --git a/contrib/subtree/git-subtree.txt b/contrib/subtree/git-subtree.txt index 54e4b4a243..60d76cdddf 100644 --- a/contrib/subtree/git-subtree.txt +++ b/contrib/subtree/git-subtree.txt @@ -146,7 +146,7 @@ OPTIONS OPTIONS FOR add, merge, push, pull ---------------------------------- --squash:: - This option is only valid for add, merge, push and pull + This option is only valid for add, merge, and pull commands. + Instead of merging the entire history from the subtree project, produce |