Skip to content

Instantly share code, notes, and snippets.

@QuentinN42
Created May 18, 2020 10:16
Show Gist options
  • Save QuentinN42/36814765296e551e8b61ceef5d139993 to your computer and use it in GitHub Desktop.
Save QuentinN42/36814765296e551e8b61ceef5d139993 to your computer and use it in GitHub Desktop.
#!/bin/bash
for pa in $(find -name "\.git" | sed -e "s/\.git//g");
do
(
cd $pa;
echo "";
echo "=> In $(pwd) :";
git $*;
);
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment