Skip to content

Instantly share code, notes, and snippets.

@bisby
Created January 17, 2017 20:45
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 bisby/85f55e3fadb50fe66944c44cb23032ff to your computer and use it in GitHub Desktop.
Save bisby/85f55e3fadb50fe66944c44cb23032ff to your computer and use it in GitHub Desktop.
function giteach {
REPODIR=~/repos
for REPO in `ls $REPODIR`; do
echo "Performing \"git $@\" on $REPO";
git -C $REPODIR/$REPO $@
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment