Skip to content

Instantly share code, notes, and snippets.

View jbudziak's full-sized avatar
🏠
Working from home

jerome budziak jbudziak

🏠
Working from home
View GitHub Profile
[user]
name = Matthias DUGUE
email = [email protected]
[color]
ui = auto
[alias]
st = status -sb
co = checkout
ci = commit
oops = commit --amend -C HEAD
@mandiwise
mandiwise / Count lines in Git repo
Last active March 4, 2025 09:54
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