소스 검색

Fixes issue where tags aren't update on change

main
Eric Amodio 7 년 전
부모
커밋
b4c15ca86b
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/git/models/repository.ts

+ 1
- 0
CHANGELOG.md 파일 보기

@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Fixes issue where the `GitLens Results` view wouldn't properly update when replacing existing results
- Fixes issue where showing commit search (file-based) results in the `GitLens Results` view wouldn't only show the matching files -- closes [#197](https://github.com/eamodio/vscode-gitlens/issues/197)
- Fixes [#238](https://github.com/eamodio/vscode-gitlens/issues/238) - Show merge commits in file history
- Fixes issue where the Tags node of the `GitLens` view wasn't updated on changes
## [7.2.0] - 2018-01-01
### Added

+ 1
- 1
src/git/models/repository.ts 파일 보기

@ -97,7 +97,7 @@ export class Repository extends Disposable {
this._suspended = suspended;
const watcher = workspace.createFileSystemWatcher(new RelativePattern(folder, '**/.git/{config,index,HEAD,refs/stash,refs/heads/**,refs/remotes/**}'));
const watcher = workspace.createFileSystemWatcher(new RelativePattern(folder, '**/.git/{config,index,HEAD,refs/stash,refs/heads/**,refs/remotes/**,refs/tags/**}'));
this._disposable = Disposable.from(
watcher,
watcher.onDidChange(this.onRepositoryChanged, this),

불러오는 중...
취소
저장