Skip to content

Instantly share code, notes, and snippets.

View pizza-planet's full-sized avatar
๐Ÿ˜‹
๐Ÿ• ๐ŸŒŽ ๐Ÿ‘จโ€๐Ÿš€ ๐Ÿ‘พ

Lucas Moore pizza-planet

๐Ÿ˜‹
๐Ÿ• ๐ŸŒŽ ๐Ÿ‘จโ€๐Ÿš€ ๐Ÿ‘พ
View GitHub Profile
@mandiwise
mandiwise / Count lines in Git repo
Last active July 2, 2025 07:26
A command to calculate lines of code in all tracked files in a Git repo
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository
$ git ls-files | xargs wc -l