Skip to content

Instantly share code, notes, and snippets.

@TobyRet
Created April 9, 2015 12:39
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 TobyRet/82f73a365a95db62a555 to your computer and use it in GitHub Desktop.
Save TobyRet/82f73a365a95db62a555 to your computer and use it in GitHub Desktop.
Zsh function to update all your Crowdmix repos - add to your .zshrc file
updatecrowdmix() {
for dir in $(ls); do
(cd $dir && echo && echo $dir && git status && git pull);
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment