Skip to content

Commit

Permalink
Merge branch 'sb/pull-rebase-submodule'
Browse files Browse the repository at this point in the history
"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
  • Loading branch information
gitster committed Aug 20, 2018
2 parents 81eab68 + e84c3cf commit ce9c6a3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions git-submodule.sh
Expand Up @@ -438,6 +438,9 @@ cmd_update()
-q|--quiet)
GIT_QUIET=1
;;
-v)
GIT_QUIET=0
;;
--progress)
progress=1
;;
Expand Down

0 comments on commit ce9c6a3

Please sign in to comment.