tags:

views:

53

answers:

1

How can I get the sha ref of a commit on a certain day?

+3  A: 
git log --pretty=format:"%H" --since="2010-03-25" --before="2010-03-26"

Learn git via github: git log tutorial

erenon
Thanks man, epicness.
Joseph Silvashy