git-commit-messages
Retrieve commit messages between a specified ancestor commit and the current HEAD to review changes and understand code evolution.
Instructions
Get commit messages between the ancestor and HEAD
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ancestor | Yes | The ancestor commit hash or branch name |
Input Schema (JSON Schema)
{
"properties": {
"ancestor": {
"description": "The ancestor commit hash or branch name",
"title": "Ancestor",
"type": "string"
}
},
"required": [
"ancestor"
],
"type": "object"
}