fork-repository
Create a copy of a GitHub repository to your personal account or specified organization, enabling independent development and experimentation without affecting the original codebase.
Instructions
Fork a GitHub repository to your account or specified organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
organization | No | Optional: organization to fork to (defaults to your personal account) | |
owner | Yes | Repository owner (username or organization) | |
repo | Yes | Repository name |
Input Schema (JSON Schema)
{
"properties": {
"organization": {
"description": "Optional: organization to fork to (defaults to your personal account)",
"type": "string"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}