UNPKG

186 BPlain TextView Raw
1/* eslint-disable import/prefer-default-export */
2import cmd from './cmd';
3
4export async function getCommitHistory(commitRange: string) {
5 return await cmd(`git log ${commitRange}`);
6}