Count Changed Lines in Git
Counting changed line in Git is important for keeping track of versions when practicing DevOps. Learn how to do it easily with this simple tip.
Join the DZone community and get the full member experience.
Join For FreeI have a favourite set of switches to git log, but today I wanted to answer the question "You deleted how much code today?" so I thought I'd share how I did that.
git log --numstat
will show you how many lines were added (first column) and removed (next column) per file, kind of a more scientific version of the --stat
switch. And if you're thinking of scripting this to gather stats, try it with --oneline
as well, it's easier to parse.
Published at DZone with permission of Lorna Mitchell, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments