summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b339177)
raw | patch | inline | side by side (parent: b339177)
author | Shawn O. Pearce <spearce@spearce.org> | |
Sun, 4 Feb 2007 07:38:47 +0000 (02:38 -0500) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 4 Feb 2007 08:18:41 +0000 (00:18 -0800) |
format-patch/log/whatchanged all take --not and --all as options
to the internal revlist process. So these should be supported
as possible completions.
gitk takes anything rev-list/log/whatchanged takes, so we should
use complete_revlist to handle its options.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
to the internal revlist process. So these should be supported
as possible completions.
gitk takes anything rev-list/log/whatchanged takes, so we should
use complete_revlist to handle its options.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
contrib/completion/git-completion.bash | patch | blob | history |
index 3b1f100f1b27d02d0d923ce2cac3ea087c1da499..466cc32f4ce4254453f2083e5a0619827971410f 100755 (executable)
--signoff
--in-reply-to=
--full-index --binary
+ --not --all
"
return
;;
--author= --committer= --grep=
--all-match
--pretty= --name-status --name-only
+ --not --all
"
return
;;
return
;;
esac
- __gitcomp "$(__git_refs)"
+ __git_complete_revlist
}
complete -o default -o nospace -F _git git