diff options
Diffstat (limited to 'third_party/git/t/t2014-checkout-switch.sh')
-rwxr-xr-x | third_party/git/t/t2014-checkout-switch.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/third_party/git/t/t2014-checkout-switch.sh b/third_party/git/t/t2014-checkout-switch.sh deleted file mode 100755 index ccfb14711353..000000000000 --- a/third_party/git/t/t2014-checkout-switch.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/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 |