autogit
Version:
Define commands, using plugins, to execute across all your repositories.
17 lines (8 loc) • 337 B
text/typescript
/* IMPORT */
import fetchRepositoriesFolders from './folders';
/* FETCH REPOSITORIES GIT */
function fetchRepositoriesGit ( roots: string[], depth: number, include: string[], exclude: string[] ) {
return fetchRepositoriesFolders ( roots, depth, include, exclude, ['.git'] );
}
/* EXPORT */
export default fetchRepositoriesGit;