Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753646Ab1BVJsR (ORCPT ); Tue, 22 Feb 2011 04:48:17 -0500 Received: from smtp6-g21.free.fr ([212.27.42.6]:54816 "EHLO smtp6-g21.free.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753281Ab1BVJsQ (ORCPT ); Tue, 22 Feb 2011 04:48:16 -0500 From: Romain Francoise To: Linus Torvalds Cc: Michal Marek , Andrew Morton , linux-kernel@vger.kernel.org Subject: [PATCH] .gitignore: ignore *.xz files Organization: orebokech dot com Date: Tue, 22 Feb 2011 10:48:06 +0100 Message-ID: <87oc648ko9.fsf@silenus.orebokech.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 870 Lines: 35 Building with CONFIG_KERNEL_XZ results in the following: # Untracked files: # (use "git add ..." to include in what will be committed) # # arch/x86/boot/compressed/vmlinux.bin.xz So ignore xz-compressed files at the top level like we already do for other compression types. Signed-off-by: Romain Francoise --- .gitignore | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 8faa6c0..5d56a3f 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,7 @@ modules.builtin *.gz *.bz2 *.lzma +*.xz *.lzo *.patch *.gcno -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/