Revision 8d61f0f07d078f4ea05d0b70511b0c8c39d8e863 authored by Junio C Hamano on 18 May 2016, 21:40:13 UTC, committed by Junio C Hamano on 18 May 2016, 21:40:14 UTC
* rn/glossary-typofix:
  Documentation: fix typo 'In such these cases'
2 parent s 977cb3e + 2e39a24
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