From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BF03558973 for ; Sun, 17 Jan 2016 07:57:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA80921C0CA; Sun, 17 Jan 2016 07:55:37 +0000 (UTC) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 496A221C05E for ; Sun, 17 Jan 2016 07:55:35 +0000 (UTC) Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id D4AC020852 for ; Sun, 17 Jan 2016 02:55:34 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute6.internal (MEProxy); Sun, 17 Jan 2016 02:55:34 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=6S0E siWvvMG3Gs+/uHvGycuMjEU=; b=KDBPcaG+cCnxF/9FGV+VLZH+12QgrBGW0WR7 6EyJUViMm2w0BDBznpu4+Z0vIIifYFklmGhHH9qaDwzBsavWmQXlzh5KQmxX3KdZ xnFSYXpdEJ7Goh5sRGQBnNrqnLSYC9nkfRCEGZujs70RrMbo/vhdZaJxP1SRq8Ap B4ykq1s= X-Sasl-enc: qE++5vFQ4bwTwpqDymmlze2Ub0HIWyqxfhdCTlZwj/cx 1453017334 Received: from localhost.localdomain (cpe-142-105-208-68.stny.res.rr.com [142.105.208.68]) by mail.messagingengine.com (Postfix) with ESMTPA id 84F5DC016C4; Sun, 17 Jan 2016 02:55:34 -0500 (EST) From: Gokturk Yuksek To: gentoo-dev@lists.gentoo.org, gentoo-doc@lists.gentoo.org Cc: Gokturk Yuksek Subject: [gentoo-doc] [PATCH 05/16] ebuild-writing/misc-files: replace the code for cvs commit with git #558642 Date: Sun, 17 Jan 2016 02:55:08 -0500 Message-Id: <1453017319-2459-6-git-send-email-gokturk@binghamton.edu> X-Mailer: git-send-email 2.4.10 In-Reply-To: <1453017319-2459-1-git-send-email-gokturk@binghamton.edu> References: <1453017319-2459-1-git-send-email-gokturk@binghamton.edu> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-doc@lists.gentoo.org Reply-to: gentoo-doc@lists.gentoo.org X-Archives-Salt: 0b470ddd-46eb-463e-a3e3-d13cf13083a5 X-Archives-Hash: a77bd5d08501b64b3603943321dd4692 Replace "cvs commit" with the equivalent "git add && git commit" version. X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=558642 Signed-off-by: Gokturk Yuksek diff --git a/ebuild-writing/misc-files/metadata/text.xml b/ebuild-writing/misc-files/metadata/text.xml index e506b1c..a8beacc 100644 --- a/ebuild-writing/misc-files/metadata/text.xml +++ b/ebuild-writing/misc-files/metadata/text.xml @@ -532,7 +532,8 @@ is currently:
 xmllint --noout --valid metadata.xml
 glep31check metadata.xml
-cvs commit -m "Adding category metadata.xml for my-category" metadata.xml
+git add metadata.xml
+git commit --gpg-sign -m "Adding category metadata.xml for my-category"
 
-- 2.4.10