Browse Source

Fixes #565 - Submodules don't work properly

Missing repo in view, file and inline blame, etc
main
Eric Amodio 6 years ago
parent
commit
e07bc76977
2 changed files with 3 additions and 1 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +2
    -1
      src/git/gitService.ts

+ 1
- 0
CHANGELOG.md View File

@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- 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)
- Fixes [#528](https://github.com/eamodio/vscode-gitlens/issues/528) — Remotes not showing, being filtred on domain and file, but not complete path
- Fixes an issue where _Close Repository_ command didn't work

+ 2
- 1
src/git/gitService.ts View File

@ -1669,7 +1669,8 @@ export class GitService implements Disposable {
let folder;
if (root !== undefined) {
rp = root.path;
// 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
// rp = root.path;
folder = root.folder;
}
else {

Loading…
Cancel
Save