本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
Fixes issue with staged/working git documents
main
Eric Amodio
6 年之前
父節點
590befa1bc
當前提交
d85965f7cc
共有
1 個檔案被更改
,包括
17 行新增
和
3 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+17
-3
src/git/gitUri.ts
+ 17
- 3
src/git/gitUri.ts
查看文件
@ -166,12 +166,26 @@ export class GitUri extends ((Uri as any) as UriEx) {
const
repoPath
=
await
git
.
getRepoPath
(
data
.
path
)
;
let
ref
;
switch
(
data
.
ref
)
{
case
''
:
case
'~'
:
ref
=
GitService
.
stagedUncommittedSha
;
break
;
case
null
:
ref
=
undefined
;
break
;
default
:
ref
=
data
.
ref
;
break
;
}
return
new
GitUri
(
uri
,
{
fileName
:
data.path
,
repoPath
:
repoPath
,
sha
:
data.ref
===
''
||
data
.
ref
==
null
?
undefined
:
data
.
ref
sha
:
ref
}
as
IGitCommitInfo
)
;
}
Write
Preview
Loading…
取消
儲存