#!/usr/bin/env node import { join } from 'path'; import { command } from '../../../core'; command(async app => { app.program .name('remote') .executableDir(__dirname) .addSubCommand('add', 'Add a remote named for the repository at ', ' ') // .addSubCommand('rename') ; // app.program.subCommand('rename') // .addSubCommand('remove ', 'add remote') // .addSubCommand('set-head ', 'add remote') // .addSubCommand('set-branches ', 'add remote') // .addSubCommand('set-url', 'add remote') return app; })