Skip to content

Commit ce9c6a3

Browse files
committed
Merge branch 'sb/pull-rebase-submodule'
"git pull --rebase -v" in a repository with a submodule barfed as an intermediate process did not understand what "-v(erbose)" flag meant, which has been fixed. * sb/pull-rebase-submodule: git-submodule.sh: accept verbose flag in cmd_update to be non-quiet
2 parents 81eab68 + e84c3cf commit ce9c6a3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

git-submodule.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,9 @@ cmd_update()
438438
-q|--quiet)
439439
GIT_QUIET=1
440440
;;
441+
-v)
442+
GIT_QUIET=0
443+
;;
441444
--progress)
442445
progress=1
443446
;;

0 commit comments

Comments
 (0)