1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-04-23 17:15:11 +02:00

Merge branch 'ss/pull-v-recurse-fix'

"git pull -v --recurse-submodules" attempted to pass "-v" down to
underlying "git submodule update", which did not understand the
request and barfed, which has been corrected.

* ss/pull-v-recurse-fix:
  submodule: accept -v for the update command
This commit is contained in:
Junio C Hamano 2022-12-28 12:06:16 +09:00
commit b3b9e5c171

View File

@ -244,6 +244,9 @@ cmd_update()
-q|--quiet)
quiet=1
;;
-v|--verbose)
quiet=0
;;
--progress)
progress=1
;;