Steps to Reproduce:
Actual Results: The following error is displayed and the user is prompted to enter password.
f() { node /tmp/vscode-remote-containers-777b*****************7ee5.js $*; }; f get: line 1: node: not found.
Node is not installed on the image (and shouldn't have to be)
Expected Results: To successfully Pull
Manual workaround (determined by looking at version 1.41.0):
In .gitconfig, replace:
[credential]
helper = "!f() { node /tmp/vscode-remote-containers-777b*****************7ee5.js $*; }; f"
with
[credential]
helper = "!f() { command -v code >/dev/null 2>&1 && code --gitCredential $*; }; f"
Does this issue occur when you try this locally?: No
Does this issue occur when you try this locally and all extensions are disabled?: Yes
Seeing this exact same issue . My current work-around has been running the following on container startup:
ln -s "$(ls ~/.vscode-server/bin/* -dt | head -1)/node" /usr/local/bin
Fixed in version 0.101.1.