RE: [PATCH v3] git-publish: add profile
Parav Pandit <[email protected]>
| Newsgroups | dev.linux.lists.virtio-comment |
|---|---|
| Message-ID | <CY8PR12MB71956BD6ECBEBE4E23B9D6C0DC1DA@CY8PR12MB7195.namprd12.prod.outlook.com> |
Hi Matias, > From: Matias Ezequiel Vara Larsen <[email protected]> > Sent: 23 September 2025 01:39 PM > > On Wed, Mar 05, 2025 at 05:45:46PM +0100, Matias Ezequiel Vara Larsen > wrote: > > Add git-publish profile and document how to use it. > > > > Signed-off-by: Matias Ezequiel Vara Larsen <[email protected]> > > --- > > v2 -> v3: > > * remove uppercase and the line split and use italic > > v1 -> v2: > > * add link to git-publish > > * document that the project contains a profile already > > --- > > .gitpublish | 3 +++ > > README.md | 15 +++++++++++++++ > > 2 files changed, 18 insertions(+) > > create mode 100644 .gitpublish > > > > Hello @Parav, I can't remember if this have been merged already. Since > this is a non-editorial change, I do not think require opening a ballot. > Right. I merged now. > Matias > > > diff --git a/.gitpublish b/.gitpublish > > new file mode 100644 > > index 0000000..d412896 > > --- /dev/null > > +++ b/.gitpublish > > @@ -0,0 +1,3 @@ > > +[gitpublishprofile "default"] > > +base = master > > +to = [email protected] > > diff --git a/README.md b/README.md > > index c06caf6..b521978 100644 > > --- a/README.md > > +++ b/README.md > > @@ -110,6 +110,21 @@ git format-patch -o proposal1/ HEAD~1..<br> > > git send-email [email protected] proposal1/0001-* > > </code> > > > > +<dl>Optionally, you can use <a > > +href="https://github.com/stefanha/git-publish">git-publish</a> to submit > a > > +patch. This project already contains a <em>git-publish</em> profile that > will > > +configure some fields, e.g., <em>To</em> field with the right address. > After you have > > +installed <em>git-publish</em>, the procedure is the following: > > + > > +<code> > > +<p> > > +git checkout master -b my-feature<br> > > +# work on new commits, add your 'Signed-off-by' lines to each<br> > > +git publish<br> > > +# more work, rebase on master, ...<br> > > +git publish # will send a v2<br> > > +</code> > > +</dl> > > <dl> > > <dt>When to use the virtio-comment mailing list:</dt> > > <dd> > > -- > > 2.42.0 > >