Linux – git: show which files have changed between kernel 3.18.6 and 3.18.7

gitkernellinux-kernelversion control

I have checked out linux kernel git repository

git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git

I know how to use git log, git show and similar commands to see changes/commits in the main kernel tree. For my particular purpose, I am however only interested in changes of the kernel tree 3.18.

How can I see only changes relating to 3.18 ?

How can I see, for example, which files have been changed between 3.18.6 and 3.18.7 ?

Best Answer

I would rather clone this git. And then do git diff --stat

$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git`
$ cd linux-stable/
$ git diff --stat v3.18.6 v3.18.7
Related Question