Revision a4c628d71d43a00acbf42ff5704d9f812babc39d authored by Junio C Hamano on 22 December 2011, 19:27:27 UTC, committed by Junio C Hamano on 22 December 2011, 19:27:27 UTC
* jk/doc-fsck:
  docs: brush up obsolete bits of git-fsck manpage

Conflicts:
	Documentation/git-fsck.txt
2 parent s f35ccd9 + 2830308
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