We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e594ce6 commit f58bc6bCopy full SHA for f58bc6b
src/main/services/pty-manager.ts
@@ -36,10 +36,9 @@ function shellEnv(): Record<string, string> {
36
env.TERM = 'xterm-256color'
37
env.TERM_PROGRAM = 'vbcdr'
38
env.VBCDR_API = `http://127.0.0.1:${HTTP_API_PORT}`
39
- env.GIT_TERMINAL_PROMPT = '0'
40
env.GIT_CONFIG_COUNT = '1'
41
env.GIT_CONFIG_KEY_0 = 'credential.helper'
42
- env.GIT_CONFIG_VALUE_0 = ''
+ env.GIT_CONFIG_VALUE_0 = 'osxkeychain'
43
if (!env.PATH || !env.PATH.includes('/usr/local/bin')) {
44
try {
45
const loginPath = execSync('/bin/bash -ilc "echo $PATH"', { encoding: 'utf-8' }).trim()
0 commit comments