Re: [patch] How can I show a patch to the list using Git?

2012-03-19 Thread Uwe Stöhr
Am 19.03.2012 19:15, schrieb Richard Heck: Use 'git format-patch' to create patches. I.e., so something like: git format-patch HEAD-2 which will give you two patches, corresponding to your last two commits. Thanks but I don't know where to enter this command. The Git GUI is in German (cannot

Re: [patch] How can I show a patch to the list using Git?

2012-03-19 Thread Richard Heck
On 03/19/2012 03:46 AM, Lars Gullik Bjønnes wrote: Tommaso Cucinotta writes: | git show HEAD~2..HEAD> cool.patch | (assuming your committed patches sit on top of everything else, in | your local branch) Use 'git format-patch' to create patches. I.e., so something like: git format-pa

Re: [patch] How can I show a patch to the list using Git?

2012-03-19 Thread Lars Gullik Bjønnes
Tommaso Cucinotta writes: | Il 19/03/2012 01:02, Uwe Stöhr ha scritto: >> As suggested I branched the Git master to develop a new feature. Now >> I think this feature is now ready and I want to show it on the list >> but how can I do that? >> >> I tried to generate a patch from my branch but I on

Re: [patch] How can I show a patch to the list using Git?

2012-03-18 Thread Tommaso Cucinotta
Il 19/03/2012 01:02, Uwe Stöhr ha scritto: As suggested I branched the Git master to develop a new feature. Now I think this feature is now ready and I want to show it on the list but how can I do that? I tried to generate a patch from my branch but I only get a success message and no file is

[patch] How can I show a patch to the list using Git?

2012-03-18 Thread Uwe Stöhr
As suggested I branched the Git master to develop a new feature. Now I think this feature is now ready and I want to show it on the list but how can I do that? I tried to generate a patch from my branch but I only get a success message and no file is generated. I can also not push it to somewh