4c0d37
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
4c0d37
From: Peter Jones <pjones@redhat.com>
4c0d37
Date: Wed, 15 Jan 2020 13:07:49 -0500
4c0d37
Subject: [PATCH] Fix the arch subdirs in .gitignore.
4c0d37
4c0d37
Currently they'll exclude e.g. inc/x64/ by accident; this makes it only
4c0d37
apply to the top level.
4c0d37
4c0d37
Also adds vim temp files to the ignore list.
4c0d37
4c0d37
Signed-off-by: Peter Jones <pjones@redhat.com>
4c0d37
---
4c0d37
 .gitignore | 13 +++++++------
4c0d37
 1 file changed, 7 insertions(+), 6 deletions(-)
4c0d37
4c0d37
diff --git a/.gitignore b/.gitignore
4c0d37
index 014f7d02f46..3e96a65bb43 100644
4c0d37
--- a/.gitignore
4c0d37
+++ b/.gitignore
4c0d37
@@ -1,12 +1,13 @@
4c0d37
+.*.sw?
4c0d37
 *.efi
4c0d37
 *.efi.debug
4c0d37
 *.o
4c0d37
 *.a
4c0d37
 *.tar.*
4c0d37
 *.tar
4c0d37
-aa64
4c0d37
-arm
4c0d37
-ia32
4c0d37
-ia64
4c0d37
-mips64el
4c0d37
-x64
4c0d37
+/aa64/
4c0d37
+/arm/
4c0d37
+/ia32/
4c0d37
+/ia64/
4c0d37
+/mips64el/
4c0d37
+/x64/