Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Vigiar
1
Marcar como favorito
0
Derivar
0
Código
Questões
0
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
Fixes issue with staged/working git documents
main
Eric Amodio
há 6 anos
ascendente
590befa1bc
cometimento
d85965f7cc
1 ficheiros alterados
com
17 adições
e
3 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+17
-3
src/git/gitUri.ts
+ 17
- 3
src/git/gitUri.ts
Ver ficheiro
@ -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é-visualizar
Carregando…
Cancelar
Guardar