Revision 9277d60233a1829742aa2d9d20ddbfc3b2b7acde authored by Junio C Hamano on 28 August 2007, 05:41:23 UTC, committed by Junio C Hamano on 28 August 2007, 05:44:41 UTC
"GIT_DIR=some.where git --bare cmd" and worse yet
"git --git-dir=some.where --bare cmd" were very confusing.  They
both ignored git-dir specified, and instead made $cwd as GIT_DIR.

This changes --bare not to override existing GIT_DIR.

This has been like this for a long time.  Let's hope nobody sane
relied on this insane behaviour.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 6adcca3
Raw File
t8001-annotate.sh
#!/bin/sh

test_description='git annotate'
. ./test-lib.sh

PROG='git annotate'
. ../annotate-tests.sh

test_expect_success \
    'Annotating an old revision works' \
    '[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") -eq 2 ] && \
     [ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") -eq 2 ]'


test_done
back to top