diff options
| author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-02-09 18:02:13 +0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-02-09 10:24:52 -0800 |
| commit | 1b35475546995edfdb4c56bbbef9a5dac7974ffb (patch) | |
| tree | 0e7dfa007636c32d95685639d7f04cec5de530ce /contrib/completion/git-completion.bash | |
| parent | ebc4a04e8437e704e40a1d35aea030dc03ec8e56 (diff) | |
| download | git-1b35475546995edfdb4c56bbbef9a5dac7974ffb.tar.xz | |
completion: use __gitcomp_builtin in _git_replace
The new completable option is --raw.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion/git-completion.bash')
| -rw-r--r-- | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 6e600b7aa3..18c2ccece9 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2661,7 +2661,7 @@ _git_replace () { case "$cur" in --*) - __gitcomp "--edit --graft --format= --list --delete" + __gitcomp_builtin replace return ;; esac |
