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. What is 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 a summary with the graph, but a one-line summary alone usually does the trick.
Option 1: One-line summary with a graph
Results in:
Option 2: One-line summary without a graph
Results in:
You can find more formatting options in the documentation here.