get_file_history
Retrieve the full history of a specific file to track changes, restore previous versions, or enhance context awareness. Provide the file's absolute path for accurate results.
Instructions
Get the complete history for a specific file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | The path to the file. Please provide an absolute path (e.g., "/Users/user/project/biome.json") for reliable matching. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"filePath": {
"description": "The path to the file. Please provide an absolute path (e.g., \"/Users/user/project/biome.json\") for reliable matching.",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}