Re: can someone verify operation of "splitpatch" with a massive "git diff"?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Am 16.11.20 um 10:18 schrieb Robert P. J. Day:
>
>   someone just handed me a several thousand line layer-wide patch, and
> i'd like to pull it apart into bite-sized pieces, and i just noticed
> the utility "splitpatch", but when i applied it to the patch, what i
> got was *almost* right ... except that the patch snippets had the
> trailing "git diff" line from the *following* patch snippet in the
> file; the splitting operation clearly retained the trailing line after
> the patch, rather than the leading line that actually represented the
> snippet.
>
>   is there a simple way to do this? i do have the right to go back to
> the patch creator and ask him to redo the diff in a different way.
> thoughts?

patch(1) should ignore those extra lines and apply the diff without
complaint.  git apply is probably more picky, based on the comments on
the homepage of splitpatch [1].

I don't understand how the original patch got so big, what you consider
bite-sized and what you'd do with the pieces, so I may be way off here.
Anyway, sometimes I lump a lot of semi-related changes into a single
commit and then have to split it up when I prepare a patch series for
review.  I'd then run "git reset HEAD^" to get rid of the commit, but
keep the changes in the worktree, and then repeatedly run
"git commit -p" to select just the hunks for a particular topic until
all the changes are committed.  This may be impractical if you have
thousands of hunks to work with, though.

Ideally huge changes are avoided at the source and split into meaningful
and consumable chunks as early as possible.  This is no longer possible
if the source is e.g. a bunch of ancient tar files with monthly
snapshots.  But since it's a Git diff I wonder what happened.  Could
Git have done better?

René


[1] https://www.clearchain.com/blog/posts/splitting-a-patch




[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux