-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Ralf Wildenhues on 9/30/2007 4:15 PM: > Thanks for the information, I'll try to think of the `---'. Since both > my mailer allows to just pipe patches from mail (and does MIME decoding > if needed), and I'm very used to both that, and also to just reading > patches per mail, I appreciate if this (posting patches, as text) could > remain as habit.
Git has 'git format-patch' which can be used to easily generate plain-text patch mails with the correct formatting for git to then apply it nicely. > > BTW, when I have time I do read already-applied patches; does git > provide a simple way to express that (then I might use it)? Something > like signed-off after applied or so? Here's where a private branch would be nice - tell git that you want to create a branch at the point before you have done reviews, then you can use 'git cherry-pick' to pull in one patch at a time, to review the patch in isolation. You can also use 'git-tag' to create private tags, and/or adjust which commit the tag points to. 'git-bisect' will make it easier to do a binary search through a series of commits for a particular regression. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHACI184KuGfSFAYARApvGAKC5WW7eVGVEWFEniq5peb3qFrdTJgCfbtJP A9DHyPwl8xG8ZqjbjdlLnOc= =lm3r -----END PGP SIGNATURE-----
