Skip to content

Commit e07bc76

Browse files
committed
Fixes #565 - Submodules don't work properly
Missing repo in view, file and inline blame, etc
1 parent 98d7716 commit e07bc76

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1616

1717
### Fixed
1818

19+
- Fixes [#565](https://github.com/eamodio/vscode-gitlens/issues/565) — Regression: Submodules don't work properly (missing repo in view, file and inline blame, etc)
1920
- Fixes [#528](https://github.com/eamodio/vscode-gitlens/issues/528) — Remotes not showing, being filtred on domain and file, but not complete path
2021
- Fixes an issue where _Close Repository_ command didn't work
2122

src/git/gitService.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1669,7 +1669,8 @@ export class GitService implements Disposable {
16691669

16701670
let folder;
16711671
if (root !== undefined) {
1672-
rp = root.path;
1672+
// Not sure why I added this for vsls (I can't see a reason for it anymore), but if it is added it will break submodules
1673+
// rp = root.path;
16731674
folder = root.folder;
16741675
}
16751676
else {

0 commit comments

Comments
 (0)