UNPKG

go-git-it

Version:

Download any repository or subdirectory on GitHub with support for Node.js and the CLI

7 lines (6 loc) 226 B
#!/usr/bin/env node /** * Main function - matches git clone API: goGitIt(url, [directory]) */ declare function goGitIt(gitURL: string, outputDirectory?: string, progressText?: string): Promise<void>; export default goGitIt;