Summary: How to submit gimp/gegl bugzilla with GIT patch
Forums ► For GIMP developers (read-only) ► Summary: How to submit gimp/gegl bugzilla with GIT patch
-
Eric Daoust
(over 2 years ago)
- Sven Neumann (over 2 years ago)
Sent: 2009-07-03 22:55:51 UTC (over 2 years ago)
From: Eric Daoust
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-nameComplete installation
Create local branch
git checkout -b branch-name origin/masterDo 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 --rebaseFix 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-folderTarball 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
_______________________________________________
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Sent: 2009-07-05 23:16:35 UTC (over 2 years ago)
From: Sven Neumann
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
_______________________________________________
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer



