I want to make a rule that will run this bash script:
```
git add .
git commit -m "Changes"
git push
```
Whenever any file was changed in the folder? Specifically I want to watch all folders inside that folder for changes. Can I do it?
Thank you for any help.