From c2304032c40d41bcf53b797989cf223d921bea1f Mon Sep 17 00:00:00 2001 From: Danilo Leone Date: Wed, 20 May 2026 22:45:08 -0300 Subject: [PATCH 1/2] chore(git): remove orphan `.claude` gitlink `.claude` was committed in 73646ae as a gitlink (mode 160000) without a matching entry in `.gitmodules`. CI fails on `git submodule update --init` with `fatal: No url found for submodule path '.claude' in .gitmodules`. Remove the gitlink from the index and broaden `.gitignore` so the local Claude Code config dir cannot be re-added as a tracked entity. --- .claude | 1 - .gitignore | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) delete mode 160000 .claude diff --git a/.claude b/.claude deleted file mode 160000 index e8b141d0..00000000 --- a/.claude +++ /dev/null @@ -1 +0,0 @@ -Subproject commit e8b141d07eec256d6c4d577bdc2e9d265d4ed09b diff --git a/.gitignore b/.gitignore index 179f18cb..c8f935c1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ .env _evo* +.claude +.claude/ .claude/* .agents/* CLAUDE.md From 12a15839c0cdb8a43ebb4499f90b0f650ccb32c2 Mon Sep 17 00:00:00 2001 From: Danilo Leone Date: Wed, 20 May 2026 22:55:46 -0300 Subject: [PATCH 2/2] chore(git): remove orphan `bms-monorepo` and `evo-ai-docs` gitlinks Same root cause as the `.claude` removal: both `bms-monorepo` and `evo-ai-docs` were committed in 73646ae as gitlinks (mode 160000) without matching entries in `.gitmodules`. CI fails on `git submodule update --init` with `fatal: No url found for submodule path '...'`. Remove both gitlinks and broaden `.gitignore` so the local sibling clones cannot be re-added as tracked entities. --- .gitignore | 6 ++++++ bms-monorepo | 1 - evo-ai-docs | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) delete mode 160000 bms-monorepo delete mode 160000 evo-ai-docs diff --git a/.gitignore b/.gitignore index c8f935c1..0b2d1337 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,9 @@ CLAUDE.md # Local-only working copies of sibling enterprise repos (not a submodule). evo-crm-enterprise/ + +# Sibling repos cloned locally but not registered in .gitmodules. They were +# accidentally tracked as orphan gitlinks before; ignore the dirs so nobody +# re-adds them with `git add`. +bms-monorepo/ +evo-ai-docs/ diff --git a/bms-monorepo b/bms-monorepo deleted file mode 160000 index 374e13c6..00000000 --- a/bms-monorepo +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 374e13c6746cac8af499802eea999ef182f0e7bb diff --git a/evo-ai-docs b/evo-ai-docs deleted file mode 160000 index 9cf73e99..00000000 --- a/evo-ai-docs +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 9cf73e99761bc79285f6da1f017fd7056df29401