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
Avoids as any
main
Eric Amodio
il y a 3 ans
Parent
26700d7efa
révision
7555abecd8
3 fichiers modifiés
avec
3 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
+1
-1
src/commands/git/fetch.ts
+1
-1
src/commands/git/pull.ts
+1
-1
src/commands/git/push.ts
+ 1
- 1
src/commands/git/fetch.ts
Voir le fichier
@ -76,7 +76,7 @@ export class FetchGitCommand extends QuickCommand
{
}
if
(
state
.
repos
!=
null
&&
!
Array
.
isArray
(
state
.
repos
)
)
{
state
.
repos
=
[
state
.
repos
as
any
]
;
state
.
repos
=
[
state
.
repos
as
string
]
;
}
let
skippedStepOne
=
false
;
+ 1
- 1
src/commands/git/pull.ts
Voir le fichier
@ -82,7 +82,7 @@ export class PullGitCommand extends QuickCommand
{
}
if
(
state
.
repos
!=
null
&&
!
Array
.
isArray
(
state
.
repos
)
)
{
state
.
repos
=
[
state
.
repos
as
any
]
;
state
.
repos
=
[
state
.
repos
as
string
]
;
}
let
skippedStepOne
=
false
;
+ 1
- 1
src/commands/git/push.ts
Voir le fichier
@ -88,7 +88,7 @@ export class PushGitCommand extends QuickCommand
{
}
if
(
state
.
repos
!=
null
&&
!
Array
.
isArray
(
state
.
repos
)
)
{
state
.
repos
=
[
state
.
repos
as
any
]
;
state
.
repos
=
[
state
.
repos
as
string
]
;
}
let
skippedStepOne
=
false
;
Écrire
Aperçu
Chargement…
Annuler
Enregistrer