Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themeEclipse
titleSample command which generate 2 days of commit logs
echo "{ \"commitLog\": [" > commitLog
git log --since="2 days ago" --pretty=format:'{"commit": "%H","authorName": "%an","authorEmail": "%ae","commiterName": "%cn","commiterEmail": "%ce","authorDate": "%at000","commiterDate": "%ct000","title": "%f"}' >> commitLog
echo "]}" >> commitLog

Upload git generated commit log reports

...