diff options
-rw-r--r-- | Documentation/merge-pull-opts.txt | 3 | ||||
-rwxr-xr-x | git-pull.sh | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/merge-pull-opts.txt b/Documentation/merge-pull-opts.txt index d03fd16178..d9164a04a6 100644 --- a/Documentation/merge-pull-opts.txt +++ b/Documentation/merge-pull-opts.txt @@ -3,7 +3,8 @@ --no-commit:: Perform the merge but pretend the merge failed and do - not autocommit. + not autocommit, to give the user a chance to inspect and + further tweak the merge result before committing. -s <strategy>:: use that merge strategy; can be given more than once to diff --git a/git-pull.sh b/git-pull.sh index 96016270b4..e23d4f5597 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -7,7 +7,7 @@ . git-sh-setup || die "Not a git archive" usage () { - die "git pull [-n] [-s strategy]... <repo> <head>..." + die "git pull [-n] [--no-commit] [-s strategy]... <repo> <head>..." } strategy_args= no_summary= no_commit= |