From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Subject: [PATCH 2/5] gitignore: Ignore files generated by gettext Date: Sat, 29 May 2010 22:45:22 +0000 Message-ID: <1275173125-21010-3-git-send-email-avarab@gmail.com> References: <1275173125-21010-1-git-send-email-avarab@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Jeff Epler , =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Sun May 30 00:46:18 2010 connect(): No such file or directory Return-path: Envelope-to: gcvg-git-2@lo.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OIUnJ-0006Bn-JA for gcvg-git-2@lo.gmane.org; Sun, 30 May 2010 00:46:17 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756845Ab0E2Wpw convert rfc822-to-quoted-printable (ORCPT ); Sat, 29 May 2010 18:45:52 -0400 Received: from mail-fx0-f46.google.com ([209.85.161.46]:61205 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756806Ab0E2Wpu (ORCPT ); Sat, 29 May 2010 18:45:50 -0400 Received: by mail-fx0-f46.google.com with SMTP id 10so1533810fxm.19 for ; Sat, 29 May 2010 15:45:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references:mime-version :content-type:content-transfer-encoding; bh=3IVi7Fj9ZAvvEA/GJ8POUQd7Es41/aSb6p7Us8+kfMY=; b=dFkpP9eaOrukPRsXM/bCVBxkVPJCDbw2kuINNrWkpsBH5+BiAVy72jthiMTEA2A7Wk dZRxE/fkDgXKbZFGxTWOqVLhALroR0vtV/Gj08PPS1ZU1w11XSWioui12saBfCrHG+wv vsD07L/m7KvVc1NidJYFtjR1VnT13xLbirulQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :mime-version:content-type:content-transfer-encoding; b=SJisUztjEEn3OU4PPMHA0uFM8e2QQCBnrtBiMNll/1bukO3GZcWgogvF5i+7ibTU/B Tg2GP37GogJX3qt2O+dBNPVB6RrAyVxqr75N0b0BnuVYfmjsAV8ASV52y3qKsJ3kUSnx Z/LKLjgtjfiEePaG/K7W0lS28OnZhiOlfYYgE= Received: by 10.223.63.76 with SMTP id a12mr2862039fai.10.1275173150049; Sat, 29 May 2010 15:45:50 -0700 (PDT) Received: from localhost.localdomain (dslb-188-098-088-194.pools.arcor-ip.net [188.98.88.194]) by mx.google.com with ESMTPS id y12sm24351890faj.17.2010.05.29.15.45.48 (version=SSLv3 cipher=RC4-MD5); Sat, 29 May 2010 15:45:49 -0700 (PDT) X-Mailer: git-send-email 1.7.1.242.ge2b63.dirty In-Reply-To: <1275173125-21010-1-git-send-email-avarab@gmail.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: - Ignore po/git.pot which is autogenerated by a manual run of the Makefile. We're only interested in tracking the po/*.po files. - Ignore the /share/ directory. It's created during installation and contains gettext-related files to be installed. Signed-off-by: =C3=86var Arnfj=C3=B6r=C3=B0 Bjarmason --- .gitignore | 1 + po/.gitignore | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) create mode 100644 po/.gitignore diff --git a/.gitignore b/.gitignore index 14e2b6b..d22c0e5 100644 --- a/.gitignore +++ b/.gitignore @@ -204,3 +204,4 @@ *.pdb /Debug/ /Release/ +/share/ diff --git a/po/.gitignore b/po/.gitignore new file mode 100644 index 0000000..221000e --- /dev/null +++ b/po/.gitignore @@ -0,0 +1 @@ +/*.pot --=20 1.7.1.242.ge2b63.dirty