Last Updated: February 25, 2016
·
907
· carleeto

Find all file extensions in a git repository's history

git log --pretty=format: --name-only | sort -u | awk -F . '{print $NF}' | grep -v '/' | sort -u