list_commits
Review commit history for a repository branch by providing owner and repository name. Returns commit details including author, message, and timestamp.
Instructions
Use this when you need to review commit history for a repository branch. Returns a JSON array of commit objects with id, title, author, committer, message, and created_at. Requires 'owner' and 'name'. Optional: 'branch' (defaults to the repo's default branch), 'limit' (default 50). See also: list_branches, get_repo.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | Yes | Repository owner (username or DAO name) | |
| name | Yes | Repository name | |
| branch | No | Branch name (defaults to repo's default branch) | |
| limit | No | Maximum number of commits to return (default 50) |