From: Lee Marlow Date: Wed, 10 Dec 2008 19:39:18 +0000 (-0700) Subject: bash completion: Use 'git add' completions for 'git stage' X-Git-Tag: v1.6.2-rc0~179 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=df3987717f1546719a1bf1828fb3714cd5ca9faa;p=git.git bash completion: Use 'git add' completions for 'git stage' Signed-off-by: Lee Marlow Trivially-Acked-by: Shawn O. Pearce Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index e986e783e..7b074d798 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1738,6 +1738,7 @@ _git () show) _git_show ;; show-branch) _git_show_branch ;; stash) _git_stash ;; + stage) _git_add ;; submodule) _git_submodule ;; svn) _git_svn ;; tag) _git_tag ;;