method GitClient.prototype.addCommitimport { GitClient } from "https://deno.land/x/kd_clients@v1.0.0-preview.14/mod.ts"; addCommit(branchName: string, commitMessage: string): Promise<void>Adds a commit with the given commitMessage to a branch with the given branchName. ParametersbranchName: stringThe name of the branch. commitMessage: stringThe commit message. ReturnsPromise<void>