]> git.ipfire.org Git - thirdparty/git.git/commit - t/t3200-branch.sh
t3200: verify "branch --list" sanity when rebasing from detached HEAD
authorEric Sunshine <sunshine@sunshineco.com>
Tue, 3 Apr 2018 14:47:15 +0000 (20:17 +0530)
committerJunio C Hamano <gitster@pobox.com>
Thu, 5 Apr 2018 07:05:09 +0000 (16:05 +0900)
commit1f537be3f21ce1289c5c3ed9ebf58f02938ad9f7
treef04f66795951e7063b2e1451d123093c8b6f9bc1
parenta236f900d8f60e567fca0106038f4797341d97b2
t3200: verify "branch --list" sanity when rebasing from detached HEAD

"git branch --list" shows an in-progress rebase as:

  * (no branch, rebasing <branch>)
    master
    ...

However, if the rebase is started from a detached HEAD, then there is no
<branch>, and it would attempt to print a NULL pointer. The previous
commit fixed this problem, so add a test to verify that the output is
sane in this situation.

Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Kaartic Sivaraam <kaartic.sivaraam@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3200-branch.sh