Skip to content

Instantly share code, notes, and snippets.

@daniframos
Created October 8, 2017 18:16
Show Gist options
  • Save daniframos/3bf6fa62ac7643de7b67598a98a861cc to your computer and use it in GitHub Desktop.
Save daniframos/3bf6fa62ac7643de7b67598a98a861cc to your computer and use it in GitHub Desktop.
g=`find C:/X/KK -name .git`
for repo in ${g[@]}
do
cd ${repo}
cd ..
echo ${repo}
git pull
git add .
git commit -m "Commit automático"
git push
git status
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment