From 889b5f85c6e9e0e28ca946ee6ac435c095387474 Mon Sep 17 00:00:00 2001 From: Alastair Bridgewater Date: Fri, 3 Sep 2010 00:32:49 +0000 Subject: [PATCH] 1.0.42.26: git: Add a couple of new patterns to .gitignore * One or more tests tend to create .so files in the tests/ directory. Ignore "tests/*.so". * The process of building the manual produces a couple of .html files in the doc/manual/ directory. Ignore "doc/manual/*.html". --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 6db0d6e..4e18c4b 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,7 @@ src/runtime/target-lispregs.h src/runtime/target-os.h src/runtime/ppc-linux-mcontext.h tests/test-status.lisp-expr +tests/*.so tools-for-build/grovel-headers tools-for-build/grovel-headers.exe tools-for-build/os-provides-putwc-test @@ -39,3 +40,4 @@ contrib/*/a.out contrib/*/a.exe contrib/asdf/asdf-upstream contrib/sb-cover/test-output +doc/manual/*.html -- 1.7.10.4