UNPKG

go-git-it

Version:

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

8 lines (7 loc) 225 B
#!/usr/bin/env node type GoGitIt = (gitURL: string, outputDirectory?: string) => Promise<void>; /** * Enhanced CLI with proper error handling and help text */ export default function cli(goGitIt: GoGitIt): void; export {};