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
?
git diff --stat 3.18.6 3.18.7
Assumming3.18.7
and3.18.7
or either tags or branches on that gir repository – Milind Dumbare Mar 18 '15 at 11:44