Skip to content

Instantly share code, notes, and snippets.

View colemilne54's full-sized avatar

Cole Milne colemilne54

  • The Milne Empire | Hatchery
  • Arnold, CA | Bozeman, MT | Sacramento, CA
  • 12:20 (UTC -07:00)
  • LinkedIn in/colemilne
View GitHub Profile
@mandiwise
mandiwise / Count lines in Git repo
Last active September 6, 2024 09:50
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