From: John Vogel Date: Sat, 14 May 2016 04:22:36 +0000 (-0400) Subject: README: fix git diff command X-Git-Url: http://gitweb/?a=commitdiff_plain;h=3365836dd9f7a778e30b027225480cca84fb93f5;p=kernel%2Fraspberrypi2.git README: fix git diff command The actual patch generation was erroneus; had used the name of the remote in place of the starting branch for the diff. --- diff --git a/README b/README index 7aa87a7..476986b 100644 --- a/README +++ b/README @@ -48,4 +48,4 @@ cd linux-rpi git remote add -b linux-4.5.y stable-4.5 \ git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git git pull stable-4.5 -git diff stable-4.5..rpi-4.5.y > ../linux-4.5.y-rpi-$(date +%Y%m%d).patch +git diff linux-4.5.y..rpi-4.5.y > ../linux-4.5.y-rpi-$(date +%Y%m%d).patch