[Zope3-checkins] CVS: Zope3/src/zope/fssync - fsmerger.py:1.17
Fred L. Drake, Jr.
fred at zope.com
Fri Aug 29 12:27:08 EDT 2003
Update of /cvs-repository/Zope3/src/zope/fssync
In directory cvs.zope.org:/tmp/cvs-serv31085
Modified Files:
fsmerger.py
Log Message:
ignore():
- ignore older revisions of files cached by CVS
- add comments about what each filter is looking for
=== Zope3/src/zope/fssync/fsmerger.py 1.16 => 1.17 ===
--- Zope3/src/zope/fssync/fsmerger.py:1.16 Thu Aug 28 11:38:47 2003
+++ Zope3/src/zope/fssync/fsmerger.py Fri Aug 29 11:27:07 2003
@@ -301,4 +301,9 @@
# ignore, and honor .cvsignore
fn = basename(path)
return (fn.endswith("~")
+
+ # CVS crud (retrieved older versions):
+ or fn.startswith(".#")
+
+ # special names from various revision control systems:
or fn in (".cvsignore", "CVS", "RCS", "SCCS", ".svn"))
More information about the Zope3-Checkins
mailing list