diff options
author | 2012-03-26 16:40:07 +0000 | |
---|---|---|
committer | 2012-03-26 16:40:07 +0000 | |
commit | 494c65f6d391766c2c2069114168dfbe836bad58 (patch) | |
tree | b3fe0a54203cbe2c82735538cad557fabae77f42 /gnu/usr.bin/cvs/src | |
parent | Let this compile (not enabled by default); From Damian McGuckin (diff) | |
download | wireguard-openbsd-494c65f6d391766c2c2069114168dfbe836bad58.tar.xz wireguard-openbsd-494c65f6d391766c2c2069114168dfbe836bad58.zip |
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/cvs/src')
-rw-r--r-- | gnu/usr.bin/cvs/src/ignore.c | 4 |
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"; |