@@ -577,7 +577,7 @@ export async function loadGitRepository({ projectId, workspaceId }: { projectId:
577577 // its drive unmounted) BEFORE creating the FS client — `fsClient` auto-creates
578578 // its base dir, which would silently resurrect a deleted folder as empty and
579579 // let the watcher wipe the database. We surface an "unavailable" state and let
580- // the user re-locate or remove the project; we never auto-remove it (OQ6/D4) .
580+ // the user re-locate or remove the project; we never auto-remove it.
581581 if ( gitRepository . directory ) {
582582 let isAvailable = false ;
583583 try {
@@ -1195,7 +1195,7 @@ export const cloneGitRepoAction = async ({
11951195 }
11961196
11971197 // When a user-chosen clone location is provided, validate it and guard
1198- // against two projects targeting the same folder (decision OQ5 — hard block) .
1198+ // against two projects targeting the same folder.
11991199 if ( directory ) {
12001200 if ( ! path . isAbsolute ( directory ) ) {
12011201 return { errors : [ 'Clone location must be an absolute path.' ] } ;
@@ -1592,10 +1592,10 @@ export const cloneGitRepoAction = async ({
15921592 *
15931593 * Unlike {@link cloneGitRepoAction} this performs no network clone — it points
15941594 * Insomnia at a folder already on disk:
1595- * - If the folder is not yet a git repo, `GitVCS.init` runs `git init` (OQ2) .
1595+ * - If the folder is not yet a git repo, `GitVCS.init` runs `git init`.
15961596 * - Existing Insomnia YAML is imported by the watcher; a repo with no Insomnia
1597- * data simply yields an empty project ready to populate (OQ1) .
1598- * - Two projects may not target the same folder (OQ5 — hard block) .
1597+ * data simply yields an empty project ready to populate.
1598+ * - Two projects may not target the same folder.
15991599 */
16001600export const openGitRepoAction = async ( {
16011601 organizationId,
@@ -1632,7 +1632,7 @@ export const openGitRepoAction = async ({
16321632 } ;
16331633 }
16341634
1635- // Hard-block if another project already owns this folder (OQ5) .
1635+ // Hard-block if another project already owns this folder.
16361636 const existing = await services . gitRepository . getByDirectory ( resolvedDirectory ) ;
16371637 if ( existing ) {
16381638 return { errors : [ `A project is already connected to this folder: ${ resolvedDirectory } ` ] } ;
@@ -1770,7 +1770,7 @@ export const relocateGitRepoAction = async ({
17701770 return { errors : [ 'The repository is already in that folder.' ] } ;
17711771 }
17721772
1773- // Hard-block if another project already owns the target (OQ5) .
1773+ // Hard-block if another project already owns the target.
17741774 const existing = await services . gitRepository . getByDirectory ( targetDir ) ;
17751775 if ( existing && existing . _id !== repo . _id ) {
17761776 return { errors : [ `A project is already connected to this folder: ${ targetDir } ` ] } ;
0 commit comments