Sfoglia il codice sorgente

Fixes issue where tags aren't update on change

main
Eric Amodio 6 anni fa
parent
commit
b4c15ca86b
2 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/git/models/repository.ts

+ 1
- 0
CHANGELOG.md Vedi File

@ -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 Vedi File

@ -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),

Caricamento…
Annulla
Salva