{"record":{"id":"e1126059ac87eac0","repo":"Fission-AI/OpenSpec","slug":"store-branch-must-not-be-empty-when-provided","errorCode":null,"errorMessage":"Store branch must not be empty when provided.","messagePattern":"Store branch must not be empty when provided\\.","errorType":"validation","errorClass":null,"httpStatus":null,"severity":"error","filePath":"src/core/store/foundation.ts","lineNumber":405,"sourceCode":"): Promise<StoreGitBackendConfig> {\n  if (input.localPath.length === 0) {\n    throw new Error('Store local path must not be empty.');\n  }\n\n  const resolvedPath = path.isAbsolute(input.localPath)\n    ? path.resolve(input.localPath)\n    : path.resolve(cwd, input.localPath);\n\n  if (!(await pathIsDirectory(resolvedPath))) {\n    throw new Error(`Store local path does not exist: ${input.localPath}`);\n  }\n\n  if (input.remote !== undefined && input.remote.length === 0) {\n    throw new Error('Store backend remote must not be empty when provided.');\n  }\n\n  if (input.branch !== undefined && input.branch.length === 0) {\n    throw new Error('Store branch must not be empty when provided.');\n  }\n\n  return {\n    type: 'git',\n    local_path: normalizeExistingPathForStorage(resolvedPath),\n    ...(input.remote ? { remote: input.remote } : {}),\n    ...(input.branch ? { branch: input.branch } : {}),\n  };\n}\n","sourceCodeStart":387,"sourceCodeEnd":415,"githubUrl":"https://github.com/Fission-AI/OpenSpec/blob/6926ccb18afa4ff621112813e9968334576ee11a/src/core/store/foundation.ts#L387-L415","documentation":"Error \"Store branch must not be empty when provided.\" thrown in Fission-AI/OpenSpec.","triggerScenarios":"Thrown at src/core/store/foundation.ts:405 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"6926ccb18afa4ff621112813e9968334576ee11a","analyzedAt":"2026-08-25T12:29:45.729Z","schemaVersion":2},"datasetVersion":"2026-08-25T16:17:27.014Z"}