diff options
author | David Aguilar <davvid@gmail.com> | 2014-01-16 00:18:39 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-01-16 01:01:07 +0100 |
commit | ef93e3a49c3b2b62c6c450f862ce1626bc8dab54 (patch) | |
tree | 848f2f09d74e7b749d1b7f2bedd9ddf99f71c27e /git-pull.sh | |
parent | pull: add pull.ff configuration (diff) | |
download | git-ef93e3a49c3b2b62c6c450f862ce1626bc8dab54.tar.xz git-ef93e3a49c3b2b62c6c450f862ce1626bc8dab54.zip |
pull: add --ff-only to the help text
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-pull.sh')
-rwxr-xr-x | git-pull.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-pull.sh b/git-pull.sh index 44b792a5d2..d17a461b3d 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -4,7 +4,7 @@ # # Fetch one or more remote refs and merge it/them into the current HEAD. -USAGE='[-n | --no-stat] [--[no-]commit] [--[no-]squash] [--[no-]ff] [--[no-]rebase|--rebase=preserve] [-s strategy]... [<fetch-options>] <repo> <head>...' +USAGE='[-n | --no-stat] [--[no-]commit] [--[no-]squash] [--[no-]ff|--ff-only] [--[no-]rebase|--rebase=preserve] [-s strategy]... [<fetch-options>] <repo> <head>...' LONG_USAGE='Fetch one or more remote refs and integrate it/them with the current HEAD.' SUBDIRECTORY_OK=Yes OPTIONS_SPEC= |