diff options
Diffstat (limited to '')
-rwxr-xr-x | git-submodule.sh | 3 | ||||
-rwxr-xr-x | t/t7406-submodule-update.sh | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index 5b9683bf76..0df6b0fc97 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -241,9 +241,6 @@ cmd_update() -q|--quiet) GIT_QUIET=1 ;; - -v) - unset GIT_QUIET - ;; --progress) progress=1 ;; diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index 43f779d751..06d804e213 100755 --- a/t/t7406-submodule-update.sh +++ b/t/t7406-submodule-update.sh @@ -1074,7 +1074,7 @@ test_expect_success 'submodule update --quiet passes quietness to merge/rebase' git submodule update --rebase --quiet >out 2>err && test_must_be_empty out && test_must_be_empty err && - git submodule update --rebase -v >out 2>err && + git submodule update --rebase >out 2>err && test_file_not_empty out && test_must_be_empty err ) |