I run the command npm version patch in the integrated terminal in VS Code and it fails to run it and this is the log:
'add',
info git 'C:\\Users\\User\\source\\repos\\
client\\src\\quickapp\\clientapp\\package.json
'add',
info git 'C:\\Users\\User\\source\\repos\\
client\\src\\quickapp\\clientapp\\package-lock.json
info git [ 'commit', '-m', '1.12.9' ]
It tries to stage the files using their full path without success, and when it comes to the commit part it fails because the files are not staged.
When I run the command from the integrated terminal like this: git add package.json it works as expected but with the full path it doesn't.
More Information:
When I run npm version patch from git bash it works fine.
What VS Code settings am I missing here?
