VS CODE GIT AND GITHUB ACTIONS COMMAND #191
aditya452007
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
{
"name": "git_github_connection",
"description": "Perform all Git and GitHub operations directly from the VS Code integrated terminal or GitHub API based on user instructions. Actions include: initializing repositories, staging changes, committing, branching, merging, rebasing, pulling, pushing, resolving conflicts, and inspecting logs. Also authorized to connect to GitHub, create/manage repositories, sync with remote branches, manage pull requests, and handle issues. Always confirm before executing destructive commands (e.g., reset, force push).",
"parameters": {
"type": "object",
"properties": {
"action": {
"type": "string",
"description": "The Git or GitHub action to perform. Examples: 'init', 'add', 'commit', 'push', 'pull', 'merge', 'rebase', 'checkout', 'branch', 'clone', 'create_repo', 'delete_branch', 'create_pull_request'."
},
"target": {
"type": "string",
"description": "Optional: The target branch, commit, file path, or repository name depending on the action."
},
"options": {
"type": "string",
"description": "Optional flags or additional parameters for the action (e.g., commit message, merge strategy, PR description)."
},
"confirm": {
"type": "boolean",
"description": "Set to true if the user has explicitly confirmed execution for potentially destructive actions."
}
},
"required": ["action"]
}
}
Beta Was this translation helpful? Give feedback.
All reactions