0.0
No commit activity in last 3 years
No release in over 3 years
Add modifications to 'git diff --shortstat' using the LCS algorithm.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

= 1.4.4
= 1.8.1
= 1.1.0
 Project Readme

GitDiffLCS

Generally, git diff --stat does not contain modifications, so we added it to display modifications using the LCS algorithm.

Installation

$ gem install git_diff_lcs

How to use

$ git_diff_lcs shortstat  [GIT_REPOSITORY or WORKING_DIRECTORY] [SRC(branch or commit)] [DEST(branch or commit)]
$ git_diff_lcs shortstat  https://github.com/btpink-seo/git-diff-lcs.git test/src test/dest
$ git_diff_lcs shortstat  workspace/git-diff-lcs test/src test/dest

Compare with "git diff --shortstat"

$ git diff --shortstat test/src test/dest
 5 files changed, 15 insertions(+), 8 deletions(-)

$ git_diff_lcs shortstat https://github.com/btpink-seo/git-diff-lcs.git test/src test/dest
 5 files changed, 13 insertions(+), 6 deletions(-), 2 modifications(!), total(21)