mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 18:48:45 -05:00
Fixes issue with file history working tree compare
Would occur when the filename had changed
This commit is contained in:
@@ -1,6 +1,9 @@
|
|||||||
---
|
---
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
### 1.4.2
|
||||||
|
- Fixes issue where file history wouldn't compare correctly to working tree if the filename had changed
|
||||||
|
|
||||||
### 1.4.1
|
### 1.4.1
|
||||||
- Adds `gitlens.advanced.gitignore.enabled` to enable/disable .gitignore parsing. Addresses [#20](https://github.com/eamodio/vscode-gitlens/issues/20) - Nested .gitignore files can cause blame to fail with a repo within another repo
|
- Adds `gitlens.advanced.gitignore.enabled` to enable/disable .gitignore parsing. Addresses [#20](https://github.com/eamodio/vscode-gitlens/issues/20) - Nested .gitignore files can cause blame to fail with a repo within another repo
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitlens",
|
"name": "gitlens",
|
||||||
"version": "1.4.1",
|
"version": "1.4.2",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Eric Amodio",
|
"name": "Eric Amodio",
|
||||||
"email": "eamodio@gmail.com"
|
"email": "eamodio@gmail.com"
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ export default class ShowQuickFileHistoryCommand extends EditorCommand {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (command) {
|
if (command) {
|
||||||
return commands.executeCommand(command, commit.uri, commit);
|
return commands.executeCommand(command, uri, commit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (ex) {
|
catch (ex) {
|
||||||
|
|||||||
Reference in New Issue
Block a user