Dirk Mueller
483dbc7bc8
* Revert the "git patch-id" change that went into 2.46.1, as it seems to have got a regression reported (I haven't verified, but it is better to keep a known breakage than adding an unintended regression). * In a few corner cases "git diff --exit-code" failed to report "changes" (e.g., renamed without any content change), which has been corrected. * The interpret-trailers command failed to recognise the end of the message when the commit log ends in an incomplete line. OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/git?expand=0&rev=658
12 lines
481 B
Plaintext
12 lines
481 B
Plaintext
# In git versions < 1.7.12, this shell library was part of the
|
|
# git completion script.
|
|
#
|
|
# Some users rely on the __git_ps1 function becoming available
|
|
# when bash-completion is loaded. Continue to load this library
|
|
# at bash-completion startup for now, to ease the transition to a
|
|
# world order where the prompt function is requested separately.
|
|
#
|
|
if [[ -e /usr/share/bash-completion/completions/git-prompt.sh ]]; then
|
|
. /usr/share/bash-completion/completions/git-prompt.sh
|
|
fi
|