Skip to content

Instantly share code, notes, and snippets.

View WrathfulSpatula's full-sized avatar
☮️
I miss you, I'm not gonna qrack; I love you, I'm not gonna qrack...

Daniel Strano WrathfulSpatula

☮️
I miss you, I'm not gonna qrack; I love you, I'm not gonna qrack...
View GitHub Profile
@mandiwise
mandiwise / Count lines in Git repo
Last active July 4, 2024 16:56
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