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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.