ogit
Version:
A lazy developer's Git CLI made simple. Makes using git on cloud IDEs (i.e. C9) a walk in the park.
17 lines (16 loc) • 623 B
TypeScript
import 'reflect-metadata';
import { Command, flags } from '@oclif/command';
export default class SetupGitFlowCommand extends Command {
static description: string;
static flags: {
global: flags.IOptionFlag<string>;
production: flags.IOptionFlag<string>;
next: flags.IOptionFlag<string>;
feature: flags.IOptionFlag<string>;
release: flags.IOptionFlag<string>;
hotfix: flags.IOptionFlag<string>;
tag: flags.IOptionFlag<string>;
};
run(): Promise<void>;
searchBranch: (branches: string[]) => (answers: string[], input: string) => Promise<string[]>;
}