Skip to content

Instantly share code, notes, and snippets.

@BioQwer
Created June 28, 2016 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BioQwer/ffb325c6a792e888a117af5a52d36daf to your computer and use it in GitHub Desktop.
Save BioQwer/ffb325c6a792e888a117af5a52d36daf to your computer and use it in GitHub Desktop.
Update All repos in folder
for i in $(ls -1);
do
cd $i;
pwd;
git pull;
cd .. ;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment