浏览代码

Fixes #1444 - diff w/ working for first commit

main
Eric Amodio 3 年前
父节点
当前提交
58fb823c41
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/commands/gitCommands.actions.ts

+ 1
- 0
CHANGELOG.md 查看文件

@ -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 查看文件

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

正在加载...
取消
保存