"Gisle Vanem" <[email protected]> writes: >> would you mind adding a src/ChangeLog file entry and send the patch as >> git format-patch or git send-email? > > I don't know git, but attached are my attempt.
what command did you use to generate these files? I suggest you also to squash the two patches into one (though I can do it for you here if you don't want to take this additional step): git rebase -i HEAD~2 An editor opens and it allows you to edit a text file where you can select the second patch to be squashed into the first one, some information is already available in the text file itself on how to do it. This is the preferred way, and if you are interested in working more on wget in the future, it may turn useful to you to know about it. Once you have squashed the two commits, you can get the file with: git format-patch HEAD~1 that generates a 0001-something.patch file, that you can send here. Please keep the discussion on the mailing list, so other people can jump in. Thanks, Giuseppe
