Dumb rookie mistake. Initialize a git repository in /usr/local/Library.
git init
git add -A
Whoops, don't want to commit all those files
git rm -rf .
ls # EMPTY
Didn't do an initial commit, so git reset HEAD
doesn't work. Is there a way to recover the contents of my /usr/local/Library directory?