Gentoo Archives: gentoo-dev

From: gokturk@××××××××××.edu
To: devmanual@g.o
Cc: gentoo-dev@l.g.o, Gokturk Yuksek <gokturk@××××××××××.edu>
Subject: [gentoo-dev] [PATCH v3 05/21] ebuild-writing/misc-files: replace the code for cvs commit with git #558642
Date: Thu, 04 Feb 2016 01:00:50
Message-Id: 1454547469-22487-6-git-send-email-gokturk@binghamton.edu
In Reply to: [gentoo-dev] [PATCH v3 00/21] devmanual: update the docs for post git-migration by gokturk@binghamton.edu
1 From: Gokturk Yuksek <gokturk@××××××××××.edu>
2
3 Replace "cvs commit" with the equivalent "git add && git commit" version.
4
5 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=558642
6 Signed-off-by: Gokturk Yuksek <gokturk@××××××××××.edu>
7 ---
8 ebuild-writing/misc-files/metadata/text.xml | 16 +++++++++++++++-
9 1 file changed, 15 insertions(+), 1 deletion(-)
10
11 diff --git a/ebuild-writing/misc-files/metadata/text.xml b/ebuild-writing/misc-files/metadata/text.xml
12 index e506b1c..2de3cf5 100644
13 --- a/ebuild-writing/misc-files/metadata/text.xml
14 +++ b/ebuild-writing/misc-files/metadata/text.xml
15 @@ -532,7 +532,21 @@ is currently:
16 <pre>
17 xmllint --noout --valid metadata.xml
18 glep31check metadata.xml
19 -cvs commit -m "Adding category metadata.xml for my-category" metadata.xml
20 +git add metadata.xml
21 +git commit --gpg-sign
22 +</pre>
23 +
24 +<p>
25 +The commit message should be formatted properly.
26 +A sample commit is shown below:
27 +</p>
28 +
29 +<pre>
30 +commit db359439bcd52f5a7f20d2332ab62feb16657504
31 +Author: Alexis Ballier &lt;aballier@g.o&gt;
32 +Date: Tue Sep 22 10:47:49 2015 +0200
33 +
34 + dev-ros: Add metadata.xml for the category.
35 </pre>
36
37 </body>
38 --
39 2.4.10

Replies