Changes from/to 4.1.4.-ti-r9?

How can I see the changes to certain files or directories in the kernel tree between Linus' 4.1.4, and 4.1.4-ti-r9? How about between 4.1.4-ti-r9 and 4.2.x-boneX?

Thanks!

'diff ’ . . . but do not ask me for specific diff commands, as it is something I need to learn myself. There is literally a LOT of information on the web on the subject. Perhaps too much.

Well, the problem with that is you have to clone multiple repos and then just do the diff. I can certainly do that, but I figured there was some git magic to do it from a single repo.

Well, the problem with that is you have to clone multiple repos and then just do the diff. I can certainly do that, but I figured there was some git magic to do it from a single repo.

Well, I did a quick google search before responding to see if i could spot something obvious. I didn’t but, did find a hit that seemed to be explaining using diff on git repo’s over the internet. I think this may be what you’re after . . .

http://stackoverflow.com/questions/1737306/how-to-diff-files-directly-from-the-linux-kernel-git-repository

For what it’s worth, my git skills are sorely lacking. So . . . not quite sure that will do the trick, but seems like it would.

Well, qgit can handle that...

git clone https://github.com/beagleboard/linux
cd linux/

v4.1.4 = https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=89e419960fb6a260f6a112821507d516117d5aa1

qgit 89e419960fb6a260f6a112821507d516117d5aa1...4.1.4-ti-r9

which is 922 commits...

(i didn't push the v4.1.x tags..)

Regards,