method GitClient.prototype.getBranchesimport { GitClient } from "https://deno.land/x/kd_clients@v1.0.0-preview.14/mod.ts"; getBranches(untilPredicate?: (branch: GitBranchModel) => boolean): Promise<GitBranchModel[]>Gets a list of branches for a repository. ParametersoptionaluntilPredicate: (branch: GitBranchModel) => booleanUsed to determine when to stop getting branches. ReturnsPromise<GitBranchModel[]>The list of branches for the repository.