ogit
Version:
A lazy developer's Git CLI made simple. Makes using git on cloud IDEs (i.e. C9) a walk in the park.
12 lines (11 loc) • 557 B
TypeScript
import Command, { BranchNamePairStructure } from '../abstracts/AbstractBranchCommand';
export default class RenameBranchCommand extends Command {
static description: string;
static flags: {
search: import("../../../../../../../Users/shakilsiraj/Documents/GitHub/ogit/node_modules/@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
getSelectedBranch(): Promise<BranchNamePairStructure>;
preformBranchOperation(branchInfo: BranchNamePairStructure): Promise<void>;
run(): Promise<void>;
requireRemoteBranches(): boolean;
}