Skip to content

Instantly share code, notes, and snippets.

@raven
raven / git-by-date
Last active April 11, 2019 01:47 — forked from kennyp/git-by-date
If you need to sort files by creation date in git.ex. `find . -name '*ViewModel*' | git-by-date`
#!/bin/bash
while read f
do
echo "$(git log --format="%ai" --reverse "$f" | head -n1) $f"
done | sort -n
@raven
raven / about.md
Created August 10, 2011 00:58 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer