This website works better with JavaScript.
首頁
探索
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
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
;
Write
Preview
Loading…
取消
儲存