Development

Changeset 7765

You must first sign up to be able to contribute.

Changeset 7765

Show
Ignore:
Timestamp:
03/07/08 14:57:07 (6 months ago)
Author:
fabien
Message:

fixed init-* tasks for Subversion on Windows, GIT, and Mercurial (closes #2506)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/util/sfFinder.class.php

    r6867 r7765  
    232232   * Ignores version control directories. 
    233233   * 
    234    * Currently supports subversion, CVS, DARCS, Gnu Arch, Monotone, Bazaar-NG 
     234   * Currently supports Subversion, CVS, DARCS, Gnu Arch, Monotone, Bazaar-NG, GIT, Mercurial 
    235235   * 
    236236   * @return object current sfFinder object 
     
    238238  public function ignore_version_control() 
    239239  { 
    240     $ignores = array('.svn', 'CVS', '_darcs', '.arch-params', '.monotone', '.bzr'); 
     240    $ignores = array('.svn', '_svn', 'CVS', '_darcs', '.arch-params', '.monotone', '.bzr', '.git', '.hg'); 
    241241 
    242242    return $this->discard($ignores)->prune($ignores);