Diese Webseite funktioniert besser mit JavaScript.
Startseite
Erkunden
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Beobachten
1
Favorisieren
0
Fork
0
Code
Issues
0
Pull-Requests
0
Releases
0
Wiki
Aktivität
Quellcode durchsuchen
Fixes
#276
- force english for error message output
main
Eric Amodio
vor 6 Jahren
Ursprung
e3ca5ee487
Commit
6889e2aa57
1 geänderte Dateien
mit
1 neuen
und
1 gelöschten
Zeilen
Geteilte Ansicht
Diff-Optionen
Statistiken anzeigen
Patch-Datei herunterladen
Vergleichs-Datei herunterladen
+1
-1
src/git/git.ts
+ 1
- 1
src/git/git.ts
Datei anzeigen
@ -84,7 +84,7 @@ async function gitCommandCore(options: CommandOptions & { readonly correlationKe
encoding
:
encoding
===
'utf8'
?
'utf8'
:
'binary'
,
// Adds GCM environment variables to avoid any possible credential issues -- from https://github.com/Microsoft/vscode/issues/26573#issuecomment-338686581
// Shouldn't *really* be needed but better safe than sorry
env
:
{
.
.
.
(
options
.
env
||
process
.
env
)
,
GCM_INTERACTIVE
:
'NEVER'
,
GCM_PRESERVE_CREDS
:
'TRUE'
}
env
:
{
.
.
.
(
options
.
env
||
process
.
env
)
,
GCM_INTERACTIVE
:
'NEVER'
,
GCM_PRESERVE_CREDS
:
'TRUE'
,
LC_ALL
:
'C'
}
}
as
CommandOptions
;
const
gitCommand
=
`
git
${
args
.
join
(
' '
)
}
`
;
Verfassen
Vorschau
Laden…
Abbrechen
Speichern