diff options
author | Erick Mattos <erick.mattos@gmail.com> | 2010-05-21 21:43:52 -0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-03 14:46:19 -0700 |
commit | 86e8e7a566c5546e58f56566d0181a08d60f919f (patch) | |
tree | 249fcd78fe303a7150973d08b77107ae20a1d924 /contrib/completion | |
parent | t3200: test -l with core.logAllRefUpdates options (diff) | |
download | tgif-86e8e7a566c5546e58f56566d0181a08d60f919f.tar.xz |
bash completion: add --orphan to 'git checkout'
Update git-completion.bash with new --orphan option to 'git checkout'.
Signed-off-by: Erick Mattos <erick.mattos@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-rwxr-xr-x | 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 545bd4b383..b70cca13fd 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -841,7 +841,7 @@ _git_checkout () --*) __gitcomp " --quiet --ours --theirs --track --no-track --merge - --conflict= --patch + --conflict= --orphan --patch " ;; *) |