Skip to content

Instantly share code, notes, and snippets.

@obalunenko
Created September 20, 2018 23:05
Show Gist options
  • Select an option

  • Save obalunenko/dcc0eeea1dd490d1b24dc90c82008ba9 to your computer and use it in GitHub Desktop.

Select an option

Save obalunenko/dcc0eeea1dd490d1b24dc90c82008ba9 to your computer and use it in GitHub Desktop.
Count lines of code in git Go repo
#!/bin/sh
git ls-files |grep ".go" | grep -v "vendor"| xargs wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment