本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
Fixes
#276
- force english for error message output
main
Eric Amodio
6 年之前
父節點
e3ca5ee487
當前提交
6889e2aa57
共有
1 個檔案被更改
,包括
1 行新增
和
1 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/git/git.ts
+ 1
- 1
src/git/git.ts
查看文件
@ -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
(
' '
)
}
`
;
Write
Preview
Loading…
取消
儲存