Revision 284daf29026c519729747bd2051829f0f958473c authored by Junio C Hamano on 25 August 2011, 23:00:53 UTC, committed by Junio C Hamano on 25 August 2011, 23:00:53 UTC
* jc/merge-reword:
  merge: reword the final message
2 parent s b0578c9 + f23101b
Raw File
t5702-clone-options.sh
#!/bin/sh

test_description='basic clone options'
. ./test-lib.sh

test_expect_success 'setup' '

	mkdir parent &&
	(cd parent && git init &&
	 echo one >file && git add file &&
	 git commit -m one)

'

test_expect_success 'clone -o' '

	git clone -o foo parent clone-o &&
	(cd clone-o && git rev-parse --verify refs/remotes/foo/master)

'

test_expect_success 'redirected clone' '

	git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
	test ! -s err

'
test_expect_success 'redirected clone -v' '

	git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
		>out 2>err &&
	test -s err

'

test_done
back to top