diff options
author | Ted Pavlic <ted@tedpavlic.com> | 2009-02-11 13:03:23 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-11 11:09:16 -0800 |
commit | fa26a401bed5967d6118ac430c5c5f4707c54386 (patch) | |
tree | 93e784c1a3ac456143015f86ee96e7e6bea26b22 /contrib/completion | |
parent | builtin-receive-pack.c: do not initialize statics to 0 (diff) | |
download | tgif-fa26a401bed5967d6118ac430c5c5f4707c54386.tar.xz |
completion: For consistency, change "git rev-parse" to __gitdir calls
Signed-off-by: Ted Pavlic <ted@tedpavlic.com>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-rwxr-xr-x | contrib/completion/git-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index f44f63cfeb..6bbe09ab9a 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -80,7 +80,7 @@ __gitdir () # returns text to add to bash PS1 prompt (includes branch name) __git_ps1 () { - local g="$(git rev-parse --git-dir 2>/dev/null)" + local g="$(__gitdir)" if [ -n "$g" ]; then local r local b @@ -1797,7 +1797,7 @@ _gitk () __git_has_doubledash && return local cur="${COMP_WORDS[COMP_CWORD]}" - local g="$(git rev-parse --git-dir 2>/dev/null)" + local g="$(__gitdir)" local merge="" if [ -f $g/MERGE_HEAD ]; then merge="--merge" |