I want to export the log of all commits in a repo to a text file, is there any way to do this?
In my case i found this was helpful
git log --after="2020-3-20" --pretty=format:'Author : %an %nDate/Time : %aD%nCommit : %s' | paste > log.txt
This will generate :
Author : your name
Date/Time : Commit Date time
Commit : Commit message