git_log
Retrieve and display the latest commits from a specified Git repository path to track changes and monitor repository activity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of commits to show | |
repository_path | Yes | Path to the git repository |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"count": {
"description": "Number of commits to show",
"type": "number"
},
"repository_path": {
"description": "Path to the git repository",
"type": "string"
}
},
"required": [
"repository_path"
],
"type": "object"
}