johny5w
7/27/2018 - 2:04 PM

git file names changed in the last year

This is a really good way to dive into a new code base and see what files have changed recentally.

This particular command will filter only less/sass/css commits... so change the awk expression as needed.

$ git log --name-only --since="365 days" | sort -u | awk '/\.(le|c|sa|sc)ss$/{print}' | nl