I\'d like to use git to record all the changes to a file.
Is there a way I can turn git \'commit\' on to automatically happen every time a file is updated - so ther
According to this article about autocommit, you shou create .bat file with content:
.bat
git add -u git commit -m "your commit message" git push origin master
and execute with Task Scheduler. If you don't know how to do step-by-step, refer that article.
Task Scheduler