I'm using this to generate a detailed log with date:
git log --pretty --since="2014-10-20"
commit 7fa4e9c196b29d925b33aff3c85a98f53248e77b
Author: a_coder <a_coder@example.com>
Date: Wed Nov 26 07:58:49 2014 -0500
feedCat tests ok
The output does not include the file being edited. Is there a way to add this? I tried -p
, but this includes file contents and diff. I'm just looking for the file/script name right now.
Is this possible in git log?