Przeglądaj źródła

Fixes #1444 - diff w/ working for first commit

main
Eric Amodio 3 lat temu
rodzic
commit
58fb823c41
2 zmienionych plików z 2 dodań i 1 usunięć
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/commands/gitCommands.actions.ts

+ 1
- 0
CHANGELOG.md Wyświetl plik

@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [1444](https://github.com/eamodio/vscode-gitlens/issues/1444) - File history view "Open Changes with Working File" does not work for the very first commit
- Fixes [1448](https://github.com/eamodio/vscode-gitlens/issues/1448) - Hashes (#) are percent encoded in custom remote urls
- Fixes [1447](https://github.com/eamodio/vscode-gitlens/issues/1447) - _Open File on Remote From..._ is missing remote branches
- Fixes [1442](https://github.com/eamodio/vscode-gitlens/issues/1442) - Interactive Rebase Editor not opened but plain text file when called from terminal

+ 1
- 1
src/commands/gitCommands.actions.ts Wyświetl plik

@ -435,7 +435,7 @@ export namespace GitActions {
file = f;
}
if (file.status === 'A' || file.status === 'D') return;
if (file.status === 'D') return;
let ref;
if (GitLogCommit.is(commitOrRef)) {

Ładowanie…
Anuluj
Zapisz