ogit
Version:
A lazy developer's Git CLI made simple. Makes using git on cloud IDEs (i.e. C9) a walk in the park.
14 lines (13 loc) • 514 B
TypeScript
import Command, { BranchNamePairStructure } from '../abstracts/AbstractBranchCommand';
import 'reflect-metadata';
import { flags } from '@oclif/command';
export default class CreateGitFlowCommand extends Command {
static description: string;
static flags: {
type: flags.IOptionFlag<string>;
};
run(): Promise<void>;
private getBranchNamePrefix;
getSelectedBranch(): Promise<BranchNamePairStructure>;
preformBranchOperation(branchInfo: BranchNamePairStructure): Promise<void>;
}