Do I need a github account?

ForumsGIMP documentation (read-only) ► Do I need a github account?

Sent: 2009-06-25 02:26:02 UTC (over 2 years ago)

From: Andrew Douglas Pitonyak

Do I need a github account?

I managed to modify the GIMP documentation including a build, so I know
that it works.

I desire to create a patch to that I can provide it to Mr. Joost.

At this point, things are becoming a wee bit confusing.

Here is what I have done so far:

Commit my changed file

$ git commit -a
$ git format-patch HEAD^

From what I glean from some web pages, it seems that I need to use
github to send my changes for review. OK, so I created an account and
even a public repo that I named "andy-gimp-help-2".

My best guess is that I now submit using:

$ git remote add github git@github.com:pitonyak/andy-gimp-help-2.git
$ git push github master

I am hesitant to use such commands and then possibly create an entire
copy of the gimp documentation, when all I think that I need to do is
figure out how to submit a patch for review so that no one needs to
manually enter my changes.

--
Andrew Pitonyak
My Macro Document: http://www.pitonyak.org/AndrewMacro.odt
My Book: http://www.hentzenwerke.com/catalog/oome.htm
Info: http://www.pitonyak.org/oo.php
See Also: http://documentation.openoffice.org/HOW_TO/index.html

_______________________________________________
Gimp-docs mailing list
Gimp-docs@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-docs

Sent: 2009-06-25 10:04:22 UTC (over 2 years ago)

From: Roman Joost

Do I need a github account?

Hi Andrew,

On Wed, Jun 24, 2009 at 08:26:02PM -0400, Andrew Douglas Pitonyak wrote:
> I managed to modify the GIMP documentation including a build, so I know
> that it works.
>
> I desire to create a patch to that I can provide it to Mr. Joost.
>
> At this point, things are becoming a wee bit confusing.
>
> Here is what I have done so far:
>
> Commit my changed file
>
> $ git commit -a
> $ git format-patch HEAD^
Looks all good to me.

> From what I glean from some web pages, it seems that I need to use
> github to send my changes for review. OK, so I created an account and
> even a public repo that I named "andy-gimp-help-2".
>
> My best guess is that I now submit using:
>
> $ git remote add github git@github.com:pitonyak/andy-gimp-help-2.git
> $ git push github master
No - please don't do that. That would confuse everyone, because then two
repositories exist where people can contribute to. I actually urge you
remove that project from github.

> I am hesitant to use such commands and then possibly create an entire
> copy of the gimp documentation, when all I think that I need to do is
> figure out how to submit a patch for review so that no one needs to
> manually enter my changes.
Just send your patches to me and I'll have a look at it.

What you could also do is, put the patches on a webserver somewhere,
write an email to the mailinglist and put a link to your patches in it.
Ask if someone could review your patches.

Cheers,

--
Roman Joost
www: http://www.romanofski.de
email: romanofski@gimp.org

_______________________________________________
Gimp-docs mailing list
Gimp-docs@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-docs

Sent: 2009-06-25 11:59:20 UTC (over 2 years ago)

From: Sven Neumann

Do I need a github account?

Hi,

On Wed, 2009-06-24 at 20:26 -0400, Andrew Douglas Pitonyak wrote:

> $ git commit -a
> $ git format-patch HEAD^

The output of this command will be a nicely formatted patch that you can
send to Roman for review. He can easily apply your changes to his tree
using the 'git am' command. So don't worry, no one needs to manually
enter your changes.

Sven

_______________________________________________
Gimp-docs mailing list
Gimp-docs@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-docs

Sent: 2009-06-25 14:44:22 UTC (over 2 years ago)

From: Andrew Douglas Pitonyak

Do I need a github account?

I expected that it was something like this....

Well, now that I have created the patch, I have no idea how to "extract
the patch as a file" so that I can host it or send it.

After work tonight, I will look for the command that tells me how to
extract the "patch" as a listing (that I can redirect) or as a file. The
changes are, after-all, small and simple for my first try.

On 06/25/2009 04:04 AM, Roman Joost wrote:
> Hi Andrew,
>
> On Wed, Jun 24, 2009 at 08:26:02PM -0400, Andrew Douglas Pitonyak wrote:
>
>> I managed to modify the GIMP documentation including a build, so I know
>> that it works.
>>
>> I desire to create a patch to that I can provide it to Mr. Joost.
>>
>> At this point, things are becoming a wee bit confusing.
>>
>> Here is what I have done so far:
>>
>> Commit my changed file
>>
>> $ git commit -a
>> $ git format-patch HEAD^
>>
> Looks all good to me.
>
>
>> From what I glean from some web pages, it seems that I need to use
>> github to send my changes for review. OK, so I created an account and
>> even a public repo that I named "andy-gimp-help-2".
>>
>> My best guess is that I now submit using:
>>
>> $ git remote add github git@github.com:pitonyak/andy-gimp-help-2.git
>> $ git push github master
>>
> No - please don't do that. That would confuse everyone, because then two
> repositories exist where people can contribute to. I actually urge you
> remove that project from github.
>
>
>> I am hesitant to use such commands and then possibly create an entire
>> copy of the gimp documentation, when all I think that I need to do is
>> figure out how to submit a patch for review so that no one needs to
>> manually enter my changes.
>>
> Just send your patches to me and I'll have a look at it.
>
> What you could also do is, put the patches on a webserver somewhere,
> write an email to the mailinglist and put a link to your patches in it.
> Ask if someone could review your patches.
>
> Cheers,
>

--
Andrew Pitonyak
My Macro Document: http://www.pitonyak.org/AndrewMacro.odt
My Book: http://www.hentzenwerke.com/catalog/oome.htm
Info: http://www.pitonyak.org/oo.php
See Also: http://documentation.openoffice.org/HOW_TO/index.html

_______________________________________________
Gimp-docs mailing list
Gimp-docs@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-docs

Sent: 2009-06-25 15:04:43 UTC (over 2 years ago)

From: Roman Joost

Do I need a github account?

On Thu, Jun 25, 2009 at 08:44:22AM -0400, Andrew Douglas Pitonyak wrote:
> I expected that it was something like this....
>
> Well, now that I have created the patch, I have no idea how to "extract
> the patch as a file" so that I can host it or send it.
>
> After work tonight, I will look for the command that tells me how to
> extract the "patch" as a listing (that I can redirect) or as a file. The
> changes are, after-all, small and simple for my first try.
Easy as pie:

git format-patch

If you don't get a patch, you probably haven't commited your changes
locally:

git commit -a

Cheers,

--
Roman Joost
www: http://www.romanofski.de
email: romanofski@gimp.org

_______________________________________________
Gimp-docs mailing list
Gimp-docs@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-docs

Sent: 2009-06-26 00:06:00 UTC (over 2 years ago)

From: Andrew Douglas Pitonyak

Do I need a github account?

On 06/25/2009 09:04 AM, Roman Joost wrote:
> On Thu, Jun 25, 2009 at 08:44:22AM -0400, Andrew Douglas Pitonyak wrote:
>
>> I expected that it was something like this....
>>
>> Well, now that I have created the patch, I have no idea how to "extract
>> the patch as a file" so that I can host it or send it.
>>
>> After work tonight, I will look for the command that tells me how to
>> extract the "patch" as a listing (that I can redirect) or as a file. The
>> changes are, after-all, small and simple for my first try.
>>
> Easy as pie:
>
> git format-patch
>
> If you don't get a patch, you probably haven't commited your changes
> locally:
>
> git commit -a
>
> Cheers,
>
Oh, I see, it appeared to do nothing because it saved the output to a
file.... Very nice. Roman, you should now have the patch.

--
Andrew Pitonyak
My Macro Document: http://www.pitonyak.org/AndrewMacro.odt
My Book: http://www.hentzenwerke.com/catalog/oome.htm
Info: http://www.pitonyak.org/oo.php
See Also: http://documentation.openoffice.org/HOW_TO/index.html

_______________________________________________
Gimp-docs mailing list
Gimp-docs@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-docs

Welcome!


Lost password?

Not a member? Sign up!

Random tutorials | Latest tutorials

  1. Hot Wallpaper with Flames Hot Wallpaper with Flames 52
  2. Generate a stripe-like texture Generate a stripe-like texture 6
  3. Create a shocking sphere/ball Create a shocking sphere/ball 20
  4. Create futuristic looking tech pattern Create futuristic looking tech pattern 12

Latest comments

But I just have 1 more prob (bear with me) I am really having troub... (2 days ago in [AVATAR] Become a real Na'Vi using GIMP!)

I got it to work :) I had to close the image and restart it. I thin... (2 days ago in Create cool rifts with translucent lights!)

there was a second and 3rd release of 2.6.12. we included the lates... (2 days ago in Last stable 2.6 release: 2.6.12 has arrived)

Poll

Is GIMP an adequate application for you to create printed graphics like flyers, advertisments etc?

View results

Latest forum activities

Your Ad Here

facts & numbers

gimpusers.com RSS feed

48 identi.ca followers
750 Twitter followers

powered by bitfire it services