summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorStuart Henderson <sthen@cvs.openbsd.org>2012-03-26 16:40:08 +0000
committerStuart Henderson <sthen@cvs.openbsd.org>2012-03-26 16:40:08 +0000
commit85cecc5537465cc4201750581aa2f9dfec9cd467 (patch)
tree76da05b0c2ed5139ab496390bf8e928a55366ecf /gnu/usr.bin
parent703862add2e6f0825b5f02102e2580cb96e6acfe (diff)
Adjust the default "ignore" list for cvs;
- don't ignore "core", it gets in the way when we import certain things - ignore "*.core" to match the actual filenames we use for core dumps suggested by landry@ - ignore ".git" to avoid accidental imports of the directory when used locally "on top of" cvs various versions ok'd by landry@ todd@ espie@ phessler@ dcoppa@
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/cvs/src/ignore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cvs/src/ignore.c b/gnu/usr.bin/cvs/src/ignore.c
index f1a3a0c88aa..db73079a73a 100644
--- a/gnu/usr.bin/cvs/src/ignore.c
+++ b/gnu/usr.bin/cvs/src/ignore.c
@@ -33,8 +33,8 @@ static int ign_size; /* This many slots available (plus
static int ign_hold = -1; /* Index where first "temporary" item
* is held */
-const char *ign_default = ". .. core RCSLOG tags TAGS RCS SCCS .make.state\
- .*.swp\
+const char *ign_default = ". .. RCSLOG tags TAGS RCS SCCS .make.state\
+ .*.swp *.core .git\
.nse_depinfo #* .#* cvslog.* ,* CVS CVS.adm .del-* *.a *.olb *.o *.obj\
*.so *.Z *~ *.old *.elc *.ln *.bak *.BAK *.orig *.rej *.exe _$* *$ *.depend";