Skip to content

Instantly share code, notes, and snippets.

@0hlov3
Last active May 5, 2020 10:06
Show Gist options
  • Save 0hlov3/d06786468f5b14ae2e92b0d763b2e05a to your computer and use it in GitHub Desktop.
Save 0hlov3/d06786468f5b14ae2e92b0d763b2e05a to your computer and use it in GitHub Desktop.
Git pull All repos
#!/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