Signed-off-by: Ramkumar Ramachandra <[email protected]>
---
contrib/completion/git-completion.bash | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/contrib/completion/git-completion.bash
b/contrib/completion/git-completion.bash
index 278018f..f2959a7 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -2247,6 +2247,20 @@ _git_reset ()
__gitcomp_nl "$(__git_refs)"
}
+_git_rev_parse ()
+{
+ case "$cur" in
+ --*)
+ __gitcomp "
+ --short --show-toplevel --is-inside-work-tree
+ --symbolic-full-name --verify
+ "
+ return
+ ;;
+ esac
+ __gitcomp_nl "$(__git_refs)"
+}
+
_git_revert ()
{
case "$cur" in
--
1.8.3.1.585.g9832cb9
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html