import { join } from 'path'; import { command } from '../../../core'; command(async app => { app.program .name('add') const help = app.createHelp(); const args = { name: help.styleArgumentText(''), URL : help.styleArgumentText('') } app.program .name('add') .description(`{italic.white Add a remote named ${args.name} for the repository at ${args.URL}. The command git fetch ${args.name} can then be used to create and update remote-tracking branches /}`) .argument('') .argument('') return app; })