Created
November 17, 2009 10:21
-
-
Save cheeming/236809 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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