use-multiple-gits
Version:
CLI tool to manage multiple git configurations (user.name, user.email, SSH keys) with easy switching between identities
7 lines • 525 B
TypeScript
export declare const createGroup: (groupName: string) => Promise<void>;
export declare const addConfigToGroup: (configName: string, groupName: string) => Promise<void>;
export declare const removeConfigFromGroup: (configName: string, groupName: string) => Promise<void>;
export declare const deleteGroup: (groupName: string) => Promise<void>;
export declare const getGroupConfigs: (groupName: string) => Promise<string[]>;
export declare const getAllGroups: () => Promise<string[]>;
//# sourceMappingURL=groupManager.d.ts.map