이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
Avoids as any
main
Eric Amodio
3 년 전
부모
26700d7efa
커밋
7555abecd8
3개의 변경된 파일
과
3개의 추가작업
그리고
3개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
파일 보기
@ -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
파일 보기
@ -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
파일 보기
@ -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
;
쓰기
미리보기
불러오는 중...
취소
저장