Skip to content

Instantly share code, notes, and snippets.

@icecreammatt
Last active August 29, 2015 13:55
Show Gist options
  • Save icecreammatt/8694484 to your computer and use it in GitHub Desktop.
Save icecreammatt/8694484 to your computer and use it in GitHub Desktop.
Reset hard and update all git folders in the current directory
#!/bin/bash
for app in $(ls -d */); {
echo $app;
cd $app;
git reset --hard;
git fetch --all;
git rebase origin/master;
git submodule update;
cd ..;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment