I want to get all files that are changed in commits that matched some conditions. So I have following: git log --grep=123, and I need to get files that are changed in that commits as an aggregated list, e.g. if file is changed in several commits it should be included only once in the resulting list. That is like selecting several commits in tortoise svn log window, it lists all files that are changed in the selected commits
I want to get all files that are changed in commits that matched some
Share
git logshouldn’t be used for scripting, but here’s a quick solution: