Is there a command to set the same branch name for all existing Git Submodules
git submodule add -b develop *
Basically I need a w
See git submodule foreach.
Evaluates an arbitrary shell command in each checked out submodule.
git submodule foreach git checkout -b develop