I want to export the log of all commits in a repo to a text file, is there any way to do this?
This is what worked for me with Git Bash on Windows 7:
Git Bash
Windows 7
git log > /C/Users//Desktop/git-log.txt
replace with your user name.
user name
The file will be exported to your Desktop from where you can read it.
Desktop
read
Good Luck...