fork_repository
Create a copy of a GitLab project in your account or specified namespace to work on changes independently from the original repository.
Instructions
Fork a GitLab project to your account or specified namespace
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or complete URL-encoded path to project | |
| namespace | No | Namespace to fork to (full path) |
Input Schema (JSON Schema)
{
"properties": {
"namespace": {
"description": "Namespace to fork to (full path)",
"type": "string"
},
"project_id": {
"description": "Project ID or complete URL-encoded path to project",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}