On 07/19/2010 08:59 PM, Misha Koshelev wrote:
Unfortunately, the more intuitive git format-patch -k --stdout HEAD~79..HEAD~78> /tmp/patch.old
does not seem to result in patches that can be properly applied onto a different (upstream) remote (see below).
Works fine here. You must have had some additional changes between upstream and HEAD~79. Or your tree diverged from the origin (you had some of your patches merged and not rebased) which is the same as above.
And you should really be using "--attach". It's always the better option, especially for the series of patches.
Vitaliy