Created
October 8, 2017 18:16
-
-
Save daniframos/3bf6fa62ac7643de7b67598a98a861cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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