You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any file created in the .git directory will be ignored by Git. So there's no danger of this diff file being committed.
There's also no need to detect the environment in this case. It will work on all environments.
The use of diff extension is more correct than using patch extension and better supported by other tools.
Tip: For those seeking to manually modify the extension, you can do so in this file %USERPROFILE%\.vscode\extensions\huytd.vscode-diff-0.0.1\out\extension.js and then execute Developer: Reload Window command in VS Code.
The text was updated successfully, but these errors were encountered:
There's no
/tmp
on Windows, so it won't work. The extension will always give an error.To fix this:
${path}/.git/huytd-vscode.diff
Update line 25 to:
Notes:
.git
directory will be ignored by Git. So there's no danger of thisdiff
file being committed.diff
extension is more correct than usingpatch
extension and better supported by other tools.Tip: For those seeking to manually modify the extension, you can do so in this file
%USERPROFILE%\.vscode\extensions\huytd.vscode-diff-0.0.1\out\extension.js
and then execute Developer: Reload Window command in VS Code.The text was updated successfully, but these errors were encountered: