Bu web sitesi JavaScript ile daha iyi çalışır.
Ana Sayfa
Keşfet
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
İzle
1
Yıldızla
0
Çatalla
0
Kod
Konular
0
Değişiklik İstekleri
0
Sürümler
0
Wiki
Aktivite
Kaynağa Gözat
Adds GCM env vars to protect credentials
main
Eric Amodio
7 yıl önce
ebeveyn
86c413081d
işleme
bebe0c2d9b
1 değiştirilmiş dosya
ile
3 ekleme
ve
1 silme
Görünümü Böl
Diff Seçenekleri
İstatistikleri Göster
Yama Dosyasını İndir
Diff Dosyasını İndir
+3
-1
src/git/git.ts
+ 3
- 1
src/git/git.ts
Dosyayı Görüntüle
@ -69,7 +69,9 @@ async function gitCommandCore(options: GitCommandOptions, ...args: any[]): Promi
const
opts
=
{
encoding
:
'utf8'
,
.
.
.
options
}
;
const
s
=
await
spawnPromise
(
git
.
path
,
args
,
{
cwd
:
options.cwd
,
env
:
options.env
||
process
.
env
,
// 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'
}
,
encoding
:
(
opts
.
encoding
===
'utf8'
)
?
'utf8'
:
'binary'
}
as
SpawnOptions
)
;
Yaz
Önizleme
Yükleniyor…
İptal
Kaydet