提交 996ced60 编写于 作者: M Marc Kassay

Fixes issue when Git has a 'Modify/Delete' conflict after a merge

上级 2a96848e
...@@ -160,6 +160,9 @@ export class CommandCenter { ...@@ -160,6 +160,9 @@ export class CommandCenter {
case Status.MODIFIED: case Status.MODIFIED:
return toGitUri(resource.resourceUri, '~'); return toGitUri(resource.resourceUri, '~');
case Status.DELETED_BY_THEM:
return toGitUri(resource.resourceUri, '');
} }
} }
...@@ -172,6 +175,7 @@ export class CommandCenter { ...@@ -172,6 +175,7 @@ export class CommandCenter {
return toGitUri(resource.resourceUri, ''); return toGitUri(resource.resourceUri, '');
case Status.INDEX_DELETED: case Status.INDEX_DELETED:
case Status.DELETED_BY_THEM:
case Status.DELETED: case Status.DELETED:
return toGitUri(resource.resourceUri, 'HEAD'); return toGitUri(resource.resourceUri, 'HEAD');
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册