Ville Skyttä <ville.skytta@xxxxxx> writes: > I initially actually changed those very lines too when working on the > fix for the issue I faced with GIT_PS1_SHOWCONFLICTSTATE. However, > both occurrences are within __git_ps1_show_upstream, and the only call > site for that function is protected by a check on the variable that > does take possible unset state into account; the function will in the > file's current form never be called with it unset. Additionally, the > first occurrence is immediately following a line that sets the > variable, so that one is "doubly protected". > > Therefore, I decided to undo those changes and not include them here. > I guess it's a matter of taste whether one finds it desirable to > protect those accesses nevertheless, but it's not strictly necessary. I am glad you took a look into it already. I wonder if we can somehow keep this "institutional knowledge" to help the next person by saving them from wasting time wondering about the reason why it is safe (iow, what you have found out and described above). Perhaps a patch like this? I dunno. Anyway, thanks again for digging! contrib/completion/git-prompt.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git i/contrib/completion/git-prompt.sh w/contrib/completion/git-prompt.sh index 3826f52dec..b05e4cb049 100644 --- i/contrib/completion/git-prompt.sh +++ w/contrib/completion/git-prompt.sh @@ -113,6 +113,10 @@ printf -v __git_printf_supports_v -- '%s' yes >/dev/null 2>&1 # stores the divergence from upstream in $p # used by GIT_PS1_SHOWUPSTREAM +# +# Note: ${GIT_PS1_SHOWUPSTREAM} is used without the nounset +# protection ${GIT_PS1_SHOWUPSTREAM-}, as the only caller calls +# only after making sure it is already set. __git_ps1_show_upstream () { local key value