mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
For submodules, `common_dir_abs_path` equals `repository_dir_abs_path` (since submodules don't have a `commondir` file). The previous code passed this path to `original_repo_path_from_common_dir` unconditionally, which returned the `.git/modules/<name>` path as the `original_repo_abs_path` — causing `linked_worktree_path()` to return a false positive for submodules. Now we detect linked worktrees by checking whether `common_dir` differs from `repository_dir` (only true for actual linked worktrees that have a `commondir` file). For normal repos and submodules, `original_repo_abs_path` is simply `work_directory_abs_path`. Also fixes the misleading doc comment on `common_dir_abs_path` in `LocalRepositoryEntry` and adds test assertions for `original_repo_abs_path` and `linked_worktree_path()` on both worktrees and submodules. Closes AI-102 Release Notes: - Fixed git submodules being incorrectly classified as linked worktrees, which could cause issues with worktree-related operations. |
||
|---|---|---|
| .. | ||
| src | ||
| test_data | ||
| Cargo.toml | ||
| clippy.toml | ||
| LICENSE-GPL | ||