Ejemplo n.º 1
0
def matchfiles(repo, files):
    return matchmod.exact(repo.root, repo.getcwd(), files)
Ejemplo n.º 2
0
def matchfiles(repo, files):
    '''Return a matcher that will efficiently match exactly these files.'''
    return matchmod.exact(repo.root, repo.getcwd(), files)
Ejemplo n.º 3
0
def matchfiles(repo, files, badfn=None):
    '''Return a matcher that will efficiently match exactly these files.'''
    return matchmod.exact(repo.root, repo.getcwd(), files, badfn=badfn)
Ejemplo n.º 4
0
def matchfiles(repo, files):
    return _match.exact(repo.root, repo.getcwd(), files)
Ejemplo n.º 5
0
def matchfiles(repo, files):
    """Return a matcher that will efficiently match exactly these files."""
    return matchmod.exact(repo.root, repo.getcwd(), files)