How can I get git history (date range) log to a file without author, date, commit message and commit hash

95 Views Asked by At

How can I get git history (date range) log to a file without author, date, commit message and commit hash?

1

There are 1 best solutions below

0
On

Found the way.

git log --since="2015-01-01" --until="2018-01-01" --pretty=format:""  -p > history-log.csv