summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2013-04-03 09:34:43 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-04-03 09:34:43 -0700
commit5ab3e4c1b2db00d813b548053f3b96d57d035dd7 (patch)
treec06f3f08ad60f4423c3075f6801074bdbcf975b7 /contrib
parentMerge branch 'jm/branch-rename-nothing-error' (diff)
parentbash: teach __git_ps1 about REVERT_HEAD (diff)
downloadtgif-5ab3e4c1b2db00d813b548053f3b96d57d035dd7.tar.xz
Merge branch 'rr/prompt-revert-head'
The prompt string generator did not notice when we are in a middle of a "git revert" session. * rr/prompt-revert-head: bash: teach __git_ps1 about REVERT_HEAD
Diffstat (limited to 'contrib')
-rw-r--r--contrib/completion/git-prompt.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/completion/git-prompt.sh b/contrib/completion/git-prompt.sh
index 341422a766..756a951459 100644
--- a/contrib/completion/git-prompt.sh
+++ b/contrib/completion/git-prompt.sh
@@ -282,6 +282,8 @@ __git_ps1 ()
r="|MERGING"
elif [ -f "$g/CHERRY_PICK_HEAD" ]; then
r="|CHERRY-PICKING"
+ elif [ -f "$g/REVERT_HEAD" ]; then
+ r="|REVERTING"
elif [ -f "$g/BISECT_LOG" ]; then
r="|BISECTING"
fi