On 11 June 2010 17:56, Till Hartmann <[email protected]> wrote: > Hi all, > > attached are two patches git apply chokes on these patches, saying that it is corrupt. I can't see the problem myself, so I suspect encoding or newline issues. Will you please resend them?
As for splitting patches this should do the trick: # 1: Make a new branch on the commit before the commit you want to split. git checkout -b splitted COMMIT~1 # 2: Apply the file changes in the commit to split to the working tree git checkout COMMIT -- altered-file1 altered-file2 # 3: Stage the changes you want in one commit git add -p # 4: Commit the changes git commit Repeat #3 and #4 until you've split your commit the way you wanted. -- Regards Jon Nordby - www.jonnor.com _______________________________________________ Mypaint-discuss mailing list [email protected] https://mail.gna.org/listinfo/mypaint-discuss
