I'm wondering if there's a better way to check out the initial version of a file than the obvious way:
git log --reverse [path/to/file]
copy the first sha1
git checkout [found sha1] [path/to/file]
We've got HEAD for the most recent, and the ^ suffix for going back one(or more) but I've not seen any good way to go back to the beginning.