From 0d9608ae1f399c7d32550fb302465ca1cd6454e4 Mon Sep 17 00:00:00 2001 From: John Marino Date: Tue, 15 Jan 2013 18:17:07 +0100 Subject: [PATCH] .gitignore: Remove build products from list The following patterns were previously active. They have been commented out because the system "make" will pick up build products in the source tree causing strange build failures. The benefit of avoiding an accidental commit of a binary is quickly offset by the liability of chasing build failures caused by "invisible" files. This has burned a few people already and even the source of bug reports. *.[psS]o !/contrib/nvi/docs/USD.doc/vi.ref/index.so !/contrib/nvi/docs/USD.doc/vi.ref/ref.so *.a !/bin/csh/USD.doc/csh.a *.o --- .gitignore | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index daf594d7c6..f2623b1b21 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,10 @@ *.[1-9].gz !share/examples/splash/dfly.bmp.gz -*.[psS]o -!/contrib/nvi/docs/USD.doc/vi.ref/index.so -!/contrib/nvi/docs/USD.doc/vi.ref/ref.so -*.a -!/bin/csh/USD.doc/csh.a *.bak *.core *.diff !/contrib/groff/src/devices/grops/psfig.diff !/lib/libstand/bzlib.c.diff -*.o *.old *.orig *.patch @@ -20,3 +14,16 @@ .*.sw[po] .sw[po] cscope.* + +# The following patterns were previously active. +# They have been commented out because the system "make" will pick up build +# products in the source tree causing strange build failures. The benefit +# of avoiding an accidental commit of a binary is quickly offset by the +# liability of chasing build failures caused by "invisible" files. This +# has burned a few people already and even the source of bug reports. +# *.[psS]o +# !/contrib/nvi/docs/USD.doc/vi.ref/index.so +# !/contrib/nvi/docs/USD.doc/vi.ref/ref.so +# *.a +# !/bin/csh/USD.doc/csh.a +# *.o -- 2.41.0