Ce site fonctionne mieux avec JavaScript.
Accueil
Explorateur
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Demandes d'ajout
0
Versions
0
Wiki
Activité
Parcourir la source
Fixes issue with staged/working git documents
main
Eric Amodio
il y a 6 ans
Parent
590befa1bc
révision
d85965f7cc
1 fichiers modifiés
avec
17 ajouts
et
3 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+17
-3
src/git/gitUri.ts
+ 17
- 3
src/git/gitUri.ts
Voir le fichier
@ -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
)
;
}
Écrire
Aperçu
Chargement…
Annuler
Enregistrer