Quick way to get GIT, CVS, SVN or Bugzilla data

175 Views Asked by At

I need to find all defect for data such as id number, severity and lines of code in the fix for a specific module in eclipse.

Is there a quick way I can do this using CVS, GIT, SVN or Bugzilla?

1

There are 1 best solutions below

0
On BEST ANSWER

You can filter git log output:

git log PATH/IN/REPO

or for a specific file:

git log PATH/IN/REPO/SOURCE.FILE

to see actual line changes, use -p:

git log -p PATH