Bläddra i källkod

Fixes #348 - bad arg ordering

main
Eric Amodio 6 år sedan
förälder
incheckning
82753c3723
2 ändrade filer med 3 tillägg och 1 borttagningar
  1. +2
    -0
      CHANGELOG.md
  2. +1
    -1
      src/gitService.ts

+ 2
- 0
CHANGELOG.md Visa fil

@ -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 Visa fil

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

Laddar…
Avbryt
Spara