git_read_files
Retrieve and display the contents of specific files from a Git repository by providing a repository URL and file paths for efficient code browsing and analysis.
Instructions
Read the contents of specified files in a given git repository.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_paths | Yes | List of file paths to read (relative to repository root) | |
repo_url | Yes | The URL of the Git repository |
Input Schema (JSON Schema)
{
"properties": {
"file_paths": {
"description": "List of file paths to read (relative to repository root)",
"items": {
"type": "string"
},
"type": "array"
},
"repo_url": {
"description": "The URL of the Git repository",
"type": "string"
}
},
"required": [
"repo_url",
"file_paths"
],
"type": "object"
}