Changeset 7765
- Timestamp:
- 03/07/08 14:57:07 (6 months ago)
- Files:
-
- branches/1.1/lib/util/sfFinder.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/util/sfFinder.class.php
r6867 r7765 232 232 * Ignores version control directories. 233 233 * 234 * Currently supports subversion, CVS, DARCS, Gnu Arch, Monotone, Bazaar-NG234 * Currently supports Subversion, CVS, DARCS, Gnu Arch, Monotone, Bazaar-NG, GIT, Mercurial 235 235 * 236 236 * @return object current sfFinder object … … 238 238 public function ignore_version_control() 239 239 { 240 $ignores = array('.svn', ' CVS', '_darcs', '.arch-params', '.monotone', '.bzr');240 $ignores = array('.svn', '_svn', 'CVS', '_darcs', '.arch-params', '.monotone', '.bzr', '.git', '.hg'); 241 241 242 242 return $this->discard($ignores)->prune($ignores);