From: Richard Hansen <rhansen@bbn.com>
To: Johannes Sixt <j6t@kdbg.org>, Jess Austin <jess.austin@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] git-prompt.sh: Hide prompt for ignored pwd
Date: Tue, 14 Oct 2014 15:08:07 -0400 [thread overview]
Message-ID: <543D7497.2020001@bbn.com> (raw)
In-Reply-To: <543D6FD7.3090306@kdbg.org>
On 2014-10-14 14:47, Johannes Sixt wrote:
> Am 14.10.2014 um 04:32 schrieb Jess Austin:
>> diff --git a/contrib/completion/git-prompt.sh b/contrib/completion/git-prompt.sh
>> index c5473dc..d7559ff 100644
>> --- a/contrib/completion/git-prompt.sh
>> +++ b/contrib/completion/git-prompt.sh
>> @@ -84,6 +84,11 @@
>> # GIT_PS1_SHOWCOLORHINTS to a nonempty value. The colors are based on
>> # the colored output of "git status -sb" and are available only when
>> # using __git_ps1 for PROMPT_COMMAND or precmd.
>> +#
>> +# If you would like __git_ps1 to do nothing in the case when the current
>> +# directory is set up to be ignored by git, then set
>> +# GIT_PS1_HIDE_ON_IGNORED_PWD to a nonempty value, or set
>> +# bash.hideOnIgnoredPwd to true in the repository configuration.
>>
>> # check whether printf supports -v
>> __git_printf_supports_v=
>> @@ -501,6 +506,13 @@ __git_ps1 ()
>> local f="$w$i$s$u"
>> local gitstring="$c$b${f:+$z$f}$r$p"
>>
>> + if [ -n "$(git check-ignore .)" ] &&
>> + ( [ -n "${GIT_PS1_HIDE_ON_IGNORED_PWD}" ] ||
>> + [ "$(git config --bool bash.hideOnIgnoredPwd)" = "true" ] )
>
> Ahem, no. Please do not punish users who are not interested in the new
> feature with two new processes every time __git_ps() is run. Think of
> Windows where fork() is really, *really* expensive.
Is this why bash.showDirtyState and friends aren't checked unless the
corresponding environment variable is set to a non-empty value?
Regardless, it would be nice if the behavior matched the other bash.*
variables (only check the bash.* variable if the corresponding
environment variable is set, and default to true). The following should
fix it:
if [ -n "${GIT_PS1_HIDE_ON_IGNORED_PWD}" ] &&
[ "$(git config --bool bash.hideOnIgnoredPwd)" != "false" ] &&
[ "$(git check-ignore .)" ]
then
...
-Richard
>
> BTW, you can write '{ foo || bar; }' to bracket a || chain without a
> sub-process.
>
>> + then
>> + printf_format=""
>> + fi
>> +
>> if [ $pcmode = yes ]; then
>> if [ "${__git_printf_supports_v-}" != yes ]; then
>> gitstring=$(printf -- "$printf_format" "$gitstring")
>
> -- Hannes
>
next prev parent reply other threads:[~2014-10-14 19:08 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-08 19:04 [PATCH] git-prompt.sh: Omit prompt for ignored directories Jess Austin
2014-10-08 21:12 ` Richard Hansen
[not found] ` <CANp8Xb8ETG-ZFCqrOk=f-RbxtRxehBmAR1O5ozLH80zimWq_Gw@mail.gmail.com>
2014-10-08 21:37 ` Fwd: " Jess Austin
2014-10-09 5:37 ` Richard Hansen
2014-10-09 10:27 ` Jess Austin
2014-10-09 22:09 ` Richard Hansen
2014-10-14 2:32 ` [PATCH] git-prompt.sh: Hide prompt for ignored pwd Jess Austin
2014-10-14 18:47 ` Johannes Sixt
2014-10-14 19:08 ` Richard Hansen [this message]
2014-10-15 4:06 ` [PATCH] git-prompt.sh: Option to hide " Jess Austin
2014-10-15 20:28 ` Richard Hansen
2015-01-05 7:03 ` [PATCH v4] " Richard Hansen
2015-01-06 23:31 ` Junio C Hamano
2015-01-07 1:22 ` [PATCH v5 0/2] " Richard Hansen
2015-01-07 1:22 ` [PATCH v5 1/2] git-prompt.sh: if pc mode, immediately set PS1 to a plain prompt Richard Hansen
2015-01-14 11:45 ` [PATCH v5 1/2] git-prompt.sh: if pc mode, immediately set PS1 SZEDER Gábor
2015-01-07 1:22 ` [PATCH v5 2/2] git-prompt.sh: Option to hide prompt for ignored pwd Richard Hansen
2014-10-14 19:21 ` [PATCH] git-prompt.sh: Hide " Richard Hansen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=543D7497.2020001@bbn.com \
--to=rhansen@bbn.com \
--cc=git@vger.kernel.org \
--cc=j6t@kdbg.org \
--cc=jess.austin@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).