From 89c1bea9310c5ecfe09ba3b544240556160cfbec Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Sat, 24 Oct 2009 03:05:41 -0700 Subject: Improve .gitignore rules. A '.*' rule prevents the 'git submodule add' from correctly adding the first submodule, because it creates the .gitmodule file. This file will not be added (without -f) result in incomplete submodule commits. The new rules mask the specific files present in my own build tree, but additional rules may be needed to hide other types of temporary files. --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index c0aba19e..2c1c536a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,17 @@ # stuff "git status" should ignore # build output -.* +.libs +.deps *.o *.a *.lo *.la *.in +# editor files +*.swp + startup_tcl.c xscale_debug.h -- cgit v1.2.3