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
t3002-ls-files-dashpath.sh
#!/bin/sh
#
# Copyright (c) 2005 Junio C Hamano
#

test_description='git ls-files test (-- to terminate the path list).

This test runs git ls-files --others with the following on the
filesystem.

    path0       - a file
    -foo	- a file with a funny name.
    --		- another file with a funny name.
'
. ./test-lib.sh

test_expect_success \
	setup \
	'echo frotz >path0 &&
	echo frotz >./-foo &&
	echo frotz >./--'

test_expect_success \
    'git ls-files without path restriction.' \
    'git ls-files --others >output &&
     git diff output - <<EOF
--
-foo
output
path0
EOF
'

test_expect_success \
    'git ls-files with path restriction.' \
    'git ls-files --others path0 >output &&
	git diff output - <<EOF
path0
EOF
'

test_expect_success \
    'git ls-files with path restriction with --.' \
    'git ls-files --others -- path0 >output &&
	git diff output - <<EOF
path0
EOF
'

test_expect_success \
    'git ls-files with path restriction with -- --.' \
    'git ls-files --others -- -- >output &&
	git diff output - <<EOF
--
EOF
'

test_expect_success \
    'git ls-files with no path restriction.' \
    'git ls-files --others -- >output &&
	git diff output - <<EOF
--
-foo
output
path0
EOF
'

test_done
back to top