Last active
February 22, 2021 09:55
-
-
Save muneneevans/0029d95a21c9b6ca8f0ffdde94a6d11f to your computer and use it in GitHub Desktop.
recursive push#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name "node_modules" -type d -prune -exec rm -rf '{}' + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for dir in $(find . -name ".git"); do cd ${dir%/*}; git push --all; cd -; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment