Skip to content

Commit

Permalink
Fixes #1444 - diff w/ working for first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Apr 7, 2021
1 parent 9594bfc commit 58fb823
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/commands/gitCommands.actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 58fb823

Please sign in to comment.