Fatal: Invalid Date Format: 0 +0000
If you get this:
$ git commit
fatal: invalid date format: 0 +0000
Use a timestamp for your commit:
$ git commit --date='<<INSERT UNIX TIMESTAMP>>'
(Source: stackoverflow.com)
Snippets of awesome to git your stuff done with Git source control.
If you get this:
$ git commit
fatal: invalid date format: 0 +0000
Use a timestamp for your commit:
$ git commit --date='<<INSERT UNIX TIMESTAMP>>'
(Source: stackoverflow.com)