Skip to content

Commit b3b9e5c

Browse files
committed
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
2 parents 8a4e8f6 + 6f65f84 commit b3b9e5c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

git-submodule.sh

+3
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,9 @@ cmd_update()
244244
-q|--quiet)
245245
quiet=1
246246
;;
247+
-v|--verbose)
248+
quiet=0
249+
;;
247250
--progress)
248251
progress=1
249252
;;

0 commit comments

Comments
 (0)