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) • 677 B
TypeScript
import Command, { BranchNamePairStructure } from '../abstracts/AbstractBranchCommand';
export declare class PullRemoteChangesCommand extends Command {
static description: string;
static flags: {
trackingOnly: import("../../../../../../../Users/shakilsiraj/Documents/GitHub/ogit/node_modules/@oclif/parser/lib/flags").IBooleanFlag<boolean>;
search: import("../../../../../../../Users/shakilsiraj/Documents/GitHub/ogit/node_modules/@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
run(): Promise<void>;
getSelectedBranch(): Promise<BranchNamePairStructure>;
preformBranchOperation(branchInfo: BranchNamePairStructure): Promise<void>;
}