From 6bff42f4e56e7092878afda6c858b6a73b86b595 Mon Sep 17 00:00:00 2001 From: Will Estes Date: Sun, 22 Jul 2012 20:36:18 -0400 Subject: [PATCH] rename .cvsignore files to .gitignore The .cvsignore files from the legacy cvs repository tracked what files got autogenerated during various stages of the flex build. Renaming the .cvsignore files to .gitignore lets git do the same thing. git is better about letting higher level .gitignore files not-track files in lower level directories. As I work my way through the test directories, we may add additional .gitignore files from the old .cvsignore files. The po/ directory has a lot of special files used by gettext, so the patterns in po/.gitignore look very different. The doc/.gitignore file accounts for what texinfo/makeinfo do, and so it also has special patterns. The m4 directory is mainly present for autoconf's benefit, but we have to account for it so make can do the right thing. Hence, m4/.gitignore says to ignore *.m4, as counterintuitive as that may seem. --- .cvsignore => .gitignore | 0 doc/{.cvsignore => .gitignore} | 0 m4/{.cvsignore => .gitignore} | 0 po/{.cvsignore => .gitignore} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename .cvsignore => .gitignore (100%) rename doc/{.cvsignore => .gitignore} (100%) rename m4/{.cvsignore => .gitignore} (100%) rename po/{.cvsignore => .gitignore} (100%) diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/doc/.cvsignore b/doc/.gitignore similarity index 100% rename from doc/.cvsignore rename to doc/.gitignore diff --git a/m4/.cvsignore b/m4/.gitignore similarity index 100% rename from m4/.cvsignore rename to m4/.gitignore diff --git a/po/.cvsignore b/po/.gitignore similarity index 100% rename from po/.cvsignore rename to po/.gitignore -- 2.50.0