I was looking for a way to use git on WSL Windows Subsystem for Linux through Webstorm or an IntelliJ idea software.
I tried KatoPue's solution, but I got the following error:
fatal: could not read log file 'C:/Program Files/Git/mnt/c/Users/Elies/AppData/Local/Temp/git-commit-msg-.txt': No such file or directory
I solved it by replacing the path when sending the command to WSL's git
Settings > Version Control > Git > Path to Git executable : path_to_wslgit.bat
wslgit.bat :
@echo off
setlocal enabledelayedexpansion
set command=%*
set find=C:Users\%USERNAME%AppDataLocalTempgit-commit-msg-.txt
set replace=/mnt/c/Users/%USERNAME%/AppData/Local/Temp/git-commit-msg-.txt
call set command=%%command:!find!=!replace!%%
echo | C:WindowsSysnativeash.exe -c 'git %command%'
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…