Closed
Description
Setup
- Which version of Git for Windows are you using? Is it 32-bit or 64-bit?
$ git --version --build-options
git version 2.44.0.windows.1
cpu: x86_64
built from commit: ad0bbfffa543db6979717be96df630d3e5741331
sizeof-long: 4
sizeof-size_t: 8
shell-path: /bin/sh
feature: fsmonitor--daemon
** insert your machine's response here **
- Which version of Windows are you running? Vista, 7, 8, 10? Is it 32-bit or 64-bit?
$ cmd.exe /c ver
Microsoft Windows [Version 10.0.26090.112]
- What options did you set as part of the installation? Or did you choose the
defaults?
# One of the following:
> type "C:\Program Files\Git\etc\install-options.txt"
> type "C:\Program Files (x86)\Git\etc\install-options.txt"
> type "%USERPROFILE%\AppData\Local\Programs\Git\etc\install-options.txt"
> type "$env:USERPROFILE\AppData\Local\Programs\Git\etc\install-options.txt"
$ cat /etc/install-options.txt
Editor Option: VisualStudioCode
Custom Editor Path:
Default Branch Option:
Path Option: Cmd
SSH Option: OpenSSH
Tortoise Option: false
CURL Option: OpenSSL
CRLF Option: LFOnly
Bash Terminal Option: ConHost
Git Pull Behavior Option: Merge
Use Credential Manager: Enabled
Performance Tweaks FSCache: Enabled
Enable Symlinks: Enabled
Enable Pseudo Console Support: Enabled
Enable FSMonitor: Enabled
- Any other interesting things about your environment that might be related
to the issue you're seeing?
No
Details
- Which terminal/shell are you running Git from? e.g Bash/CMD/PowerShell/other
PowerShell
I'm encountering an issue when executing Git as a subprocess, where I'm unable to receive any output.
Here's the code that fails to produce output:
const { exec, execSync, spawn } = require('child_process');
exec('git.exe --version', (error, stdout, stderr) => {
console.log(error, stdout, stderr); // null, '', ''
});
execSync('git.exe --version', {
stdio: 'pipe',
});
However, the following code does produce output:
execSync('git.exe --version', {
stdio: 'inherit',
});
This issue is not specific to Node.js. I’ve encountered the same problem when executing Git as a subprocess using other languages like TCL/TK.
This issue is causing nearly all Git plugins to fail, including the official Git-Gui.
Any help or guidance on this issue would be greatly appreciated.