Download Git for Windows and choose Git Credential Manager (GCM) as credential helper on the installation steps.
If you use HTTPS to clone your repositories, you can share this with WSL so that passwords you enter are persisted on both sides.
Note that this does not apply to using SSH keys.
Just follow these steps:
-
Configure the credential manager on Windows by running the following in a Windows command prompt or PowerShell:
git config --global credential.helper wincred
-
Configure WSL to use the same credential helper, but running the following in a WSL terminal:
git config --global credential.helper "/mnt/c/Program\ Files/Git/mingw64/bin/git-credential-manager-core.exe"
Any password you enter when working with Git on the Windows side will now be available to WSL and vice versa.
Bonus Track

How to use multiple users with Git
Camilo Martinez ・ Oct 14 '22 ・ 3 min read
That’s All Folks!
Happy Coding 🖖
Sources
Top comments (0)