legacy-python-cli
legacy-python-cli copied to clipboard
Feature Request: Track number of line changes per commit
I was looking to track what is essentially the processed output of:
$ git log --oneline --shortstat <commit1> <commit2>
which looks like:
cddb49e Added tagging for movies, tv shows and people
2 files changed, 75 insertions(+), 37 deletions(-)
170e8d7 Added ability to search again from searchResultsViewController
3 files changed, 12 insertions(+), 12 deletions(-)
The information I'm looking to extract is:
- Num Files Changed
- Num Line Insertions
- Num Line Deletions