bash command for git resetting all directory and pull latest commit
for d in ./*/ ; do (cd "$d" && git reset --hard && git pull origin develop); done