Skip to content

Instantly share code, notes, and snippets.

@ipodipad
Forked from ianhinder/git-submodule-fetch
Created August 20, 2019 04:08
Show Gist options
  • Save ipodipad/8ef62dc988788ee189e8e23dd12a4d08 to your computer and use it in GitHub Desktop.
Save ipodipad/8ef62dc988788ee189e8e23dd12a4d08 to your computer and use it in GitHub Desktop.
Parallel submodule fetch
#!/bin/bash
set -e
set -u
if [ $# -eq 0 ]; then
git submodule -q foreach 'echo $name' | xargs -n 1 -P 10 git-submodule-fetch
else
while [ $# -gt 0 ]; do
(cd $1; git fetch -q || echo "Failed to fetch $1">&2)
/bin/echo -n .
shift
done
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment