Parcourir la source

Fixes #348 - bad arg ordering

main
Eric Amodio il y a 6 ans
Parent
révision
82753c3723
2 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +2
    -0
      CHANGELOG.md
  2. +1
    -1
      src/gitService.ts

+ 2
- 0
CHANGELOG.md Voir le fichier

@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## [Unreleased]
### Fixed
- Fixes [#313](https://github.com/eamodio/vscode-gitlens/issues/313) - Unable to show branch history for branch that matches file or folder name
- Fixes [#348](https://github.com/eamodio/vscode-gitlens/issues/348) - "Open in remote" commands disappeared from command palette
- Fixes JSON schema of the `gitlens.advanced.blame.customArguments` setting
## [8.2.2] - 2018-04-19
### Added

+ 1
- 1
src/gitService.ts Voir le fichier

@ -730,7 +730,7 @@ export class GitService extends Disposable {
if (data === undefined) return undefined;
const branch = data.split('\n');
return new GitBranch(repoPath, branch[0], true, branch[1]);
return new GitBranch(repoPath, branch[0], true, undefined, branch[1]);
}
async getBranches(repoPath: string | undefined): Promise<GitBranch[]> {

Chargement…
Annuler
Enregistrer