From: Wayne Davison Date: Thu, 9 Jan 2003 03:55:57 +0000 (+0000) Subject: Added .svn/ to the cvs_ignore_list and some trailing slashes to the X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/95dd949c09474942fe580af221298f6eb2176d87 Added .svn/ to the cvs_ignore_list and some trailing slashes to the other dirs in the list. --- diff --git a/exclude.c b/exclude.c index 23ee743d..693babb6 100644 --- a/exclude.c +++ b/exclude.c @@ -393,12 +393,11 @@ void add_include_line(char *p) static char *cvs_ignore_list[] = { - "RCS","SCCS","CVS","CVS.adm","RCSLOG","cvslog.*", - "tags","TAGS",".make.state",".nse_depinfo", - "*~", "#*", ".#*", ",*", "*.old", "*.bak", "*.BAK", "*.orig", + "RCS/", "SCCS/", "CVS/", ".svn/", "CVS.adm", "RCSLOG", "cvslog.*", + "tags", "TAGS", ".make.state", ".nse_depinfo", + "*~", "#*", ".#*", ", *", "*.old", "*.bak", "*.BAK", "*.orig", "*.rej", ".del-*", "*.a", "*.o", "*.obj", "*.so", "*.Z", "*.elc", "*.ln", - "core",NULL}; - + "core", NULL}; void add_cvs_excludes(void)