Files
codex/codex-rs/app-server-protocol/schema/json/v2/WorktreeRemoveParams.json

27 lines
585 B
JSON
Generated

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Remove a managed worktree in the repository containing \\`cwd\\`.",
"properties": {
"cwd": {
"description": "Repository-relative workspace cwd to use when resolving \\`name_or_path\\`.",
"type": [
"string",
"null"
]
},
"deleteBranch": {
"type": "boolean"
},
"force": {
"type": "boolean"
},
"nameOrPath": {
"type": "string"
}
},
"required": [
"nameOrPath"
],
"title": "WorktreeRemoveParams",
"type": "object"
}