ソースを参照

Fixes #565 - Submodules don't work properly

Missing repo in view, file and inline blame, etc
main
Eric Amodio 6年前
コミット
e07bc76977
2個のファイルの変更3行の追加1行の削除
  1. +1
    -0
      CHANGELOG.md
  2. +2
    -1
      src/git/gitService.ts

+ 1
- 0
CHANGELOG.md ファイルの表示

@ -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 ファイルの表示

@ -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 {

読み込み中…
キャンセル
保存