Este site funciona melhor com JavaScript.
Página inicial
Explorar
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
Fixes issue with staged/working git documents
main
Eric Amodio
6 anos atrás
pai
590befa1bc
commit
d85965f7cc
1 arquivos alterados
com
17 adições
e
3 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+17
-3
src/git/gitUri.ts
+ 17
- 3
src/git/gitUri.ts
Ver arquivo
@ -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
)
;
}
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar