Last active
May 5, 2020 10:06
-
-
Save 0hlov3/d06786468f5b14ae2e92b0d763b2e05a to your computer and use it in GitHub Desktop.
Git pull All repos
This file contains 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
#!/bin/bash | |
find ~/git/ -name ".git" -type d | sed 's/\/.git//' | xargs -P10 -I{} git -C {} pull origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment