S JavaScriptem funguje tato webová stránka lépe.
Domů
Procházet
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Sledovat
1
Oblíbit
0
Rozštěpit
0
Zdrojový kód
Úkoly
0
Požadavky na natažení
0
Vydání
0
Wiki
Aktivita
Procházet zdrojové kódy
Fixes counter issue with single repo
main
Eric Amodio
před 4 roky
rodič
0e9fde9386
revize
4a8a53978c
10 změnil soubory
, kde provedl
30 přidání
a
10 odebrání
Rozdělené zobrazení
Možnosti rozdílového porovnání
Zobrazit statistiky
Stáhněte soubor opravy
Stáhněte rozdílový soubor
+3
-1
src/commands/git/cherry-pick.ts
+3
-1
src/commands/git/coauthors.ts
+3
-1
src/commands/git/log.ts
+3
-1
src/commands/git/merge.ts
+3
-1
src/commands/git/rebase.ts
+3
-1
src/commands/git/reset.ts
+3
-1
src/commands/git/revert.ts
+3
-1
src/commands/git/search.ts
+3
-1
src/commands/git/show.ts
+3
-1
src/commands/git/status.ts
+ 3
- 1
src/commands/git/cherry-pick.ts
Zobrazit soubor
@ -105,7 +105,9 @@ export class CherryPickGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/coauthors.ts
Zobrazit soubor
@ -124,7 +124,9 @@ export class CoAuthorsGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/log.ts
Zobrazit soubor
@ -91,7 +91,9 @@ export class LogGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/merge.ts
Zobrazit soubor
@ -98,7 +98,9 @@ export class MergeGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/rebase.ts
Zobrazit soubor
@ -99,7 +99,9 @@ export class RebaseGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/reset.ts
Zobrazit soubor
@ -90,7 +90,9 @@ export class ResetGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/revert.ts
Zobrazit soubor
@ -89,7 +89,9 @@ export class RevertGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/search.ts
Zobrazit soubor
@ -116,7 +116,9 @@ export class SearchGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/show.ts
Zobrazit soubor
@ -89,7 +89,9 @@ export class ShowGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
+ 3
- 1
src/commands/git/status.ts
Zobrazit soubor
@ -69,7 +69,9 @@ export class StatusGitCommand extends QuickCommand
{
skippedStepOne
=
false
;
if
(
context
.
repos
.
length
===
1
)
{
skippedStepOne
=
true
;
state
.
counter
++
;
if
(
state
.
repo
==
null
)
{
state
.
counter
++
;
}
state
.
repo
=
context
.
repos
[
0
]
;
}
else
{
Zapsat
Náhled
Načítá se…
Zrušit
Uložit