Skip to content

Instantly share code, notes, and snippets.

@dombarnes
Created September 4, 2014 22:47
Show Gist options
  • Save dombarnes/affef11313b5ea8bc55c to your computer and use it in GitHub Desktop.
Save dombarnes/affef11313b5ea8bc55c to your computer and use it in GitHub Desktop.
#!/bin/bash
red='\033[0;32m'
NC='\033[0m'
for D in `find . -type d -maxdepth 1 -mindepth 1`
do
cd $(basename "$D")
echo -e "${red}$(basename "$D"${NC})"
git pull
cd ..
done
@dombarnes
Copy link
Author

Save in ~/bin
chmod a+x gitpullall

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment