2

Is it possible to commit and push automatically on certain hour or date with Git?

I personally use the client SourceTree in Windows operating system.

Julian Moreno
  • 1,002
  • 3
  • 14
  • 29
  • Why would you want to commit automatically? In the spirit of Git, commits act as *meaningful* steps in the progress in a project, not merely what the project looked like at some arbitrary time. – jub0bs Oct 07 '15 at 17:26

1 Answers1

1

You can make a cronjob

see e.g. here

that does this for you...

EDIT

For windows alternatives to cron, see here

Community
  • 1
  • 1
BartBog
  • 1,613
  • 11
  • 25