List all branches in the repository with pagination support.
// List all branches const branches = await repo.listBranches(); console.log(branches.branches); // Array of branch info // With pagination const page = await repo.listBranches({ limit: 10, cursor: branches.nextCursor, });