RSS/Atom feed Twitter
Site is read-only, email is disabled

Summary: How to submit gimp/gegl bugzilla with GIT patch

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

2 of 2 messages available
Toggle history

Please log in to manage your subscriptions.

Summary: How to submit gimp/gegl bugzilla with GIT patch Eric Daoust 03 Jul 22:55
  Summary: How to submit gimp/gegl bugzilla with GIT patch Sven Neumann 05 Jul 23:16
Eric Daoust
2009-07-03 22:55:51 UTC (over 15 years ago)

Summary: How to submit gimp/gegl bugzilla with GIT patch

Hello,

Now that I have completed the steps, I'll post the GIT patch submission procedure for others.

Checkout GEGL and/or GIMP git clone git://git.gnome.org/gegl destination-folder-name or
git clone git://git.gnome.org/gimp destination-folder-name

Complete installation

Create local branch git checkout -b branch-name origin/master

Do changes while on this branch, commit often (this will NOT affect other people's repository)
git commit -a -m "Message"

When finished (and committed code one final time) do git pull --rebase

Fix merge errors, re-execute your test code, commit again if necessary

Create the patch (which will output outlines of your commits) git format-patch origin/master..branch-name -o output-folder

Tarball output-folder

Go to bugzilla.gnome.org (register if you have not yet) and click New Bug follow steps, make sure you select GEGL or GIMP (whichever applies) in attachments section, upload the tarball of your output-folder attach other relevant files (XML test files, execution times etc.)

Eric

Sven Neumann
2009-07-05 23:16:35 UTC (over 15 years ago)

Summary: How to submit gimp/gegl bugzilla with GIT patch

Hi,

On Fri, 2009-07-03 at 16:55 -0400, Eric Daoust wrote:

Create the patch (which will output outlines of your commits) git format-patch origin/master..branch-name -o output-folder

Tarball output-folder

Go to bugzilla.gnome.org (register if you have not yet) and click New Bug follow steps, make sure you select GEGL or GIMP (whichever applies) in attachments section, upload the tarball of your output-folder attach other relevant files (XML test files, execution times etc.)

Actually, we prefer that patches are attached directly, not in a tarball. Of course if there are many patches, a tarball is preferable. But the common case is that a single patch is attached and it is much easier if that patch is attached directly to the bug-report.

Sven