Revision eaf1c941bbc10f5aa67fcf64e316fb548b910cfe authored by Junio C Hamano on 13 September 2009, 08:50:22 UTC, committed by Junio C Hamano on 13 September 2009, 08:50:33 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 5f2b1e6
Raw File
t2014-switch.sh
#!/bin/sh

test_description='Peter MacMillan'
. ./test-lib.sh

test_expect_success setup '
	echo Hello >file &&
	git add file &&
	test_tick &&
	git commit -m V1 &&
	echo Hello world >file &&
	git add file &&
	git checkout -b other
'

test_expect_success 'check all changes are staged' '
	git diff --exit-code
'

test_expect_success 'second commit' '
	git commit -m V2
'

test_expect_success 'check' '
	git diff --cached --exit-code
'

test_done
back to top