On Fri, Aug 03, 2007 at 09:30:37AM -0400, Alexander Neundorf wrote: > On Friday 03 August 2007 09:22, you wrote: > > Alexander Neundorf wrote: > ... > > > I installed git, pulled mesa and had to add -lm to the config file. I > > > committed this to my local git. > > > What is the recommended way to get this change to you ? > > > I did git log, followed by git show <commit id> and attached the diff > > > here. Is this the right way to do it ? > > > > Sure, any kind of patch is OK. I'll check in the fix. > > I mean this felt a bit manual. Or should I have created a branch and then > diffed between HEAD and my branch ?
Commit as many times as you like, then: % git format-patch origin # git 1.4 % git format-patch origin/master # git 1.5 This will give you a bunch of text files which can then be replayed with git-applymbox, and sent with git-send-email. If you remind me, I'll dig out my patch submission guide I did for work. Cheers, Daniel
signature.asc
Description: Digital signature
------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________ Mesa3d-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mesa3d-dev
