check_git_status
Verify the status of a git repository, identifying staged, unstaged, and untracked files. Specify a repository path or use the current directory to assess changes and prepare for commits.
Instructions
Check the current git repository status.
Args: repo_path: Optional path to the target git repository. If not provided, uses the current working directory.
Returns: Current git status including staged, unstaged, and untracked files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo_path | No |
Input Schema (JSON Schema)
{
"properties": {
"repo_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Repo Path"
}
},
"title": "check_git_statusArguments",
"type": "object"
}