From f0d4cca11d01c96dab41ad58a15f067efe4d7084 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sat, 25 Jun 2011 13:28:45 -0500 Subject: [PATCH] fix ignore patterns The top level .gitignore file should contain things you want ignored through the entire tree. Specific files you want ignored should go in .gitignore files in their respective directories unless they appear more than once in the tree. --- .gitignore | 3 --- doc/.gitignore | 2 ++ files/.gitignore | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 doc/.gitignore create mode 100644 files/.gitignore diff --git a/.gitignore b/.gitignore index 9de57880..539da741 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1 @@ *.py[co] -/files/catalyst.1 -/doc/subarches.generated.txt -/doc/subarches.generated.xml diff --git a/doc/.gitignore b/doc/.gitignore new file mode 100644 index 00000000..b998e26d --- /dev/null +++ b/doc/.gitignore @@ -0,0 +1,2 @@ +subarches.generated.txt +subarches.generated.xml diff --git a/files/.gitignore b/files/.gitignore new file mode 100644 index 00000000..10acc025 --- /dev/null +++ b/files/.gitignore @@ -0,0 +1 @@ +catalyst.1 -- 2.26.2