Is it possible to export a list of commit dates & comments? Preferably csv
With Git, you can do this from the command line using git log and then specifying a format. For example, your desired format might be:
git log --pretty=format:"%aD,%H,%s"
The full details of the formats are in http://www.kernel.org/pub/software/scm/git/docs/git-log.html under the "Pretty Formats" section.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.