git - Getting the total diff made by all commits matching a string -
when our development team use git include case number working in commit message.
when code review particular case, way show changes made commits message contains case number.
the commits not consecutive (but on same "branch").
also, don't want diffs produced each individual commit, rather "total" diff. file has been changed multiple matching commits (the changes might overlap), 1 diff output file, containing changes made commits.
as aside, acheived on svn using tortoisesvn, search case number, , select resulting files. produce such "total" diff every file concerned.
how achieve in git? (if script, has runnable on windows, preferrably in powershell) (using git extensions or tortoisegit ok)
have @ this solution using
git log -ssearchstring --source --all
Comments
Post a Comment