9e4b7ab652
This removes tentative "git stat" and make it take over "git status". There are some tests that expect "git status" to exit with non-zero status when there is something staged. Some tests expect "git status path..." to show the status for a partial commit. For these, replace "git status" with "git commit --dry-run". For the ones that do not attempt a dry-run of a partial commit that check the output from the command, check the output from "git status" as well, as they should be identical. Signed-off-by: Junio C Hamano <gitster@pobox.com>
39 lines
740 B
Bash
Executable File
39 lines
740 B
Bash
Executable File
#!/bin/sh
|
|
|
|
test_description='git status for submodule'
|
|
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success 'setup' '
|
|
test_create_repo sub
|
|
cd sub &&
|
|
: >bar &&
|
|
git add bar &&
|
|
git commit -m " Add bar" &&
|
|
cd .. &&
|
|
git add sub &&
|
|
git commit -m "Add submodule sub"
|
|
'
|
|
|
|
test_expect_success 'status clean' '
|
|
git status |
|
|
grep "nothing to commit"
|
|
'
|
|
test_expect_success 'commit --dry-run -a clean' '
|
|
git commit --dry-run -a |
|
|
grep "nothing to commit"
|
|
'
|
|
test_expect_success 'rm submodule contents' '
|
|
rm -rf sub/* sub/.git
|
|
'
|
|
test_expect_success 'status clean (empty submodule dir)' '
|
|
git status |
|
|
grep "nothing to commit"
|
|
'
|
|
test_expect_success 'status -a clean (empty submodule dir)' '
|
|
git commit --dry-run -a |
|
|
grep "nothing to commit"
|
|
'
|
|
|
|
test_done
|