I am doing an assignment in a university course and I am using git as version control for this assignment. The game I have been working on is complete, however, along with the hand in I would like to submit the git log, effectively showing my progress during the time I have been working on it.
I have tried this:
git log --stat > log.log
But it more or less just gives me very unreadable stuff. Can anyone help me with a command so that I can get a nice formatting on this?
I would recommend using a different format than the default. My usual choice is summary with the graph, but one line summary alone usually does the trick.
Option 1: One line summary w/ Graph
Results in:
Option 2: One line summary w/o Graph
Results in:
You can find more formatting options in the docs here
Try this line
git log > log.txt