git log - Git log formatting just one author -
i'm trying log of commits, organized day log tracking. want this:
commit message author date
so actual log like:
fixed spacing on homepage terry july 27, 2015
the closest i've found far this: git log --author="terry" --date=iso --pretty=format:'%ad%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%an %s'
but i'm not able interpret of 08% business able change want.
any ideas?
something this?
git log --pretty=format:"%h%x09%an%x09%ad%x09%s" --author="steve"
even better, if need date without timestamp:
git log --pretty=format:"%h%x09%an%x09%ad%x09%s" --author="steve" --date=short
if want authors remove --author
option in above command.
more info: http://git-scm.com/docs/pretty-formats
Comments
Post a Comment