Skip to content

Instantly share code, notes, and snippets.

@cheeming
Created November 17, 2009 10:21
Show Gist options
  • Save cheeming/236809 to your computer and use it in GitHub Desktop.
Save cheeming/236809 to your computer and use it in GitHub Desktop.
# find recently (1 day) added git commit objects
GUIDS=`find ../.git/objects/ -Btime -1d | head -n100 | sed 's/^.*objects.//' | sed 's/\///g'`; (for GUID in $GUIDS; do echo $GUID; git cat-file -t $GUID; done;)|grep commit -B1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment