Skip to content

Instantly share code, notes, and snippets.

@tclh123
Forked from victor-perez/git.bat
Created June 29, 2018 12:11
Show Gist options
  • Save tclh123/38cd19a93ff1a085fde84bf138e68a16 to your computer and use it in GitHub Desktop.
Save tclh123/38cd19a93ff1a085fde84bf138e68a16 to your computer and use it in GitHub Desktop.
Use WSL git inside VS Code from Windows 10 17046
@echo off
wsl wslpath -aw $(git %*) 2> nul
if not %errorlevel% == 0 (
wsl git %*
)
@echo on
{
"git.path": "C:\\Tools\\git.bat"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment