Exemple #1
0
def matchfiles(repo, files):
    return matchmod.exact(repo.root, repo.getcwd(), files)
Exemple #2
0
def matchfiles(repo, files):
    '''Return a matcher that will efficiently match exactly these files.'''
    return matchmod.exact(repo.root, repo.getcwd(), files)
Exemple #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)
def matchfiles(repo, files):
    return _match.exact(repo.root, repo.getcwd(), files)
def matchfiles(repo, files):
    """Return a matcher that will efficiently match exactly these files."""
    return matchmod.exact(repo.root, repo.getcwd(), files)