Skip to content

Commit

Permalink
Merge branch 'fc/show-branch-in-rebase-am' into maint
Browse files Browse the repository at this point in the history
* fc/show-branch-in-rebase-am:
  prompt: fix for simple rebase
  • Loading branch information
Junio C Hamano committed Jun 27, 2013
2 parents f79467e + 1306321 commit c9cae1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions contrib/completion/git-prompt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ __git_ps1 ()
step=$(cat "$g/rebase-apply/next")
total=$(cat "$g/rebase-apply/last")
if [ -f "$g/rebase-apply/rebasing" ]; then
b="$(cat "$g/rebase-apply/head-name")"
r="|REBASE"
elif [ -f "$g/rebase-apply/applying" ]; then
r="|AM"
Expand All @@ -296,6 +297,7 @@ __git_ps1 ()
r="|BISECTING"
fi

test -n "$b" ||
b="$(git symbolic-ref HEAD 2>/dev/null)" || {
detached=yes
b="$(
Expand Down
2 changes: 1 addition & 1 deletion t/t9903-bash-prompt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ test_expect_success 'prompt - rebase merge' '
'

test_expect_success 'prompt - rebase' '
printf " ((t2)|REBASE 1/3)" > expected &&
printf " (b2|REBASE 1/3)" > expected &&
git checkout b2 &&
test_when_finished "git checkout master" &&
test_must_fail git rebase b1 b2 &&
Expand Down

0 comments on commit c9cae1e

Please sign in to comment.