commitmnt
Version:
Copy your gitlab and bitbucket commits to a new, publishable github repo
16 lines (15 loc) • 447 B
TypeScript
/**
* Commits a series of changes on specified dates
* and pushes them to the remote
*
* @param dates the list of dates
* @param max the maximum number of commits before pushing to github
* @returns the total number of commits pushed
*
* @category Public API Module Helper
*/
export declare function makeCommits({ branch, dates, max, }: {
branch: string;
dates: Array<string>;
max: number;
}): Promise<number>;