"git pull -v --recurse-submodules" propagates the "-v" to the submodule
command which did not support "-v" yet.
Commit a56771a668d introduced this regression.
Signed-off-by: Sven Strickroth <email@xxxxxxxxxx>
---
git-submodule.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/git-submodule.sh b/git-submodule.sh
index 9a50f2e912..7f9582d923 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -244,6 +244,9 @@ cmd_update()
-q|--quiet)
quiet=1
;;
+ -v|--verbose)
+ quiet=0
+ ;;
--progress)
progress=1
;;
--
2.38.1.windows.1