Gentoo Archives: gentoo-dev

From: Michael Palimaka <kensington@g.o>
To: gentoo-doc@l.g.o, gentoo-dev@l.g.o
Cc: Gokturk Yuksek <gokturk@××××××××××.edu>
Subject: [gentoo-dev] Re: [PATCH 05/16] ebuild-writing/misc-files: replace the code for cvs commit with git #558642
Date: Sun, 17 Jan 2016 08:29:14
Message-Id: 569B50B8.6050308@gentoo.org
In Reply to: [gentoo-dev] [PATCH 05/16] ebuild-writing/misc-files: replace the code for cvs commit with git #558642 by Gokturk Yuksek
1 On 01/17/2016 06:55 PM, Gokturk Yuksek wrote:
2 > Replace "cvs commit" with the equivalent "git add && git commit" version.
3 >
4 > X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=558642
5 > Signed-off-by: Gokturk Yuksek <gokturk@××××××××××.edu>
6 >
7 > diff --git a/ebuild-writing/misc-files/metadata/text.xml b/ebuild-writing/misc-files/metadata/text.xml
8 > index e506b1c..a8beacc 100644
9 > --- a/ebuild-writing/misc-files/metadata/text.xml
10 > +++ b/ebuild-writing/misc-files/metadata/text.xml
11 > @@ -532,7 +532,8 @@ is currently:
12 > <pre>
13 > xmllint --noout --valid metadata.xml
14 > glep31check metadata.xml
15 > -cvs commit -m "Adding category metadata.xml for my-category" metadata.xml
16 > +git add metadata.xml
17 > +git commit --gpg-sign -m "Adding category metadata.xml for my-category"
18 > </pre>
19 >
20 > </body>
21 >
22
23 I would suggest a commit message of something like: "my-category: adding
24 category metadata.xml".