Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to extract date from only the last line of git log output
Previously, the code assumes the output of `git log --format="%at"` only contains commit timestamp. But this is not true. `--format` only controls a portion of the output. `git log` command can output additional information thats not controlled by format. e.g.: When `showSignature` is set, it will always display commit signature info. This commit attempts to locate timestamps only from the very last line of `git log` output.
- Loading branch information