git_push
Push changes to a specified branch in a Git repository by providing the repository path, remote name, and branch name. Facilitates repository management through natural language commands using the GIT MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | Branch name | |
remote | No | Remote name | |
repository_path | Yes | Path to the git repository |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"branch": {
"description": "Branch name",
"type": "string"
},
"remote": {
"description": "Remote name",
"type": "string"
},
"repository_path": {
"description": "Path to the git repository",
"type": "string"
}
},
"required": [
"repository_path"
],
"type": "object"
}