/ Published in: Bash
Useful when managing a bunch of submodules.
Expand |
Embed | Plain Text
find $PWD -name ".git" | while read line; do cd `dirname $line`; echo $PWD; git push; done
You need to login to post a comment.
Useful when managing a bunch of submodules.
find $PWD -name ".git" | while read line; do cd `dirname $line`; echo $PWD; git push; done
You need to login to post a comment.