import { command } from '../../../core'; command(async app => { app.program .name('rename') .arguments(' ') .description(`{white.dim Rename the remote named {yellow } to {yellow }. All remote-tracking branches and configuration settings for the remote are updated}`) .action(args => { console.dir({ args }); }); return app; });