( path: string, limit?: number, branch?: string, remote?: string )
| 2791 | } |
| 2792 | |
| 2793 | export async function gitLog( |
| 2794 | path: string, |
| 2795 | limit?: number, |
| 2796 | branch?: string, |
| 2797 | remote?: string |
| 2798 | ): Promise<GitLogResult> { |
| 2799 | return getTransport().call("git_log", { |
| 2800 | path, |
| 2801 | limit: limit ?? null, |
| 2802 | branch: branch ?? null, |
| 2803 | remote: remote ?? null, |
| 2804 | }) |
| 2805 | } |
| 2806 | |
| 2807 | export async function gitCommitBranches( |
| 2808 | path: string, |
no test coverage detected