Re: Using "git log" to find the files patched at the same time as a named file
From: Junio C Hamano <hidden> Date: 2016-06-15 22:48:10
Zack Brown [off-list ref] writes:
If I have a filename I'm interested in, and I want to find other files
that have been modified in the same commits that modified the file I'm
interested in, how could I do that with git?
Like this?
$ git log --full-diff --name-status v1.6.0..master -- Makefile
to ask "Which files have changed in the commit that touch Makefile since
v1.6.0 up to the tip of the master?"