I\'ve tried following these instructions: https://stackoverflow.com/a/40312117/21728 which basically do this:
sudo apt-get install libsecret-1-0 libsecret-1-dev
alias git=git.exe
Will simple use the git.exe from windows and its configurations
Using Windows 10 and "WSL", I created a ~/.gitconfig file, but had mistyped the [credential] section label as [credentials]. I tried running git credential fill and then feeding its output to git credential approve, which might have worked, but I suspect not since it said "usage: git credential [fill|approve|reject]". Finally, I simply ran:
$ git config --global credential.helper cache
and then did a git pull; when prompted for user and password I typed them as usual. After that, it remembered it. I found it had added the (correctly named) section to my ~/.gitconfig:
[credential]
helper = cache
I edited that to provide a much longer timeout:
[credential]
helper = cache --timeout=144000
And it all seems to be working nicely now.
I've created a script that does this for you. I use it with my Chef orchestration.
cmd.exe
and call where git-credential-manager.exe
cmd.exe
call where git.exe
C:\Program Files\Git\cmd\git.exe
C:\Program Files\Git\mingw64\libexec\git-core\git-credential-manager.exe
where
again to get the path.We need to:
C:\
with /mnt/c/
\
to /
\\
So...
"C:\Program Files\Git\mingw64\libexec\git-core\git-credential-manager.exe"
becomes..."/mnt/c/Program\\ Files/Git/mingw64/libexec/git-core/git-credential-manager.exe"
My script above has a function for doing just that
dos_path_to_linux(){
sed -e 's?\\?/?g' -e' s?[cC]:?/mnt/c?' <<<"$1"
}
But, as @12345ieee has since commented, a wslpath
utility has been added to WSL build 17046. It's worth checking out, but I don't have access to Windows at this time to verify. (Note that even though a usage statement is given in the release notes in my link, it seems that the command doesn't currently include a usage statement, -h, etc.)
bash
call git config --global credential.helper "<converted/path>"
I have just recently updated to WSL2 and in my case the following wasn't working:
"/mnt/c/Program\\ Files/Git/mingw64/libexec/git-core/git-credential-manager.exe"
What worked was the following:
git config --global credential.helper "/c/Program\\ Files/Git/mingw64/libexec/git-core/git-credential-manager.exe"
Until I've removed /mnt/
from the path I was getting a "not found" error.
From what I've investigated there's an issue with mounting windows drives in WSL2 after a clean Windows startup, more details here:
https://github.com/microsoft/WSL/issues/4122
And that was the most probable cause in my case.
Another reason for this can be a misconfiguration of root directory in /etc/wsl.conf
If you installed Git for Windows there is a windows integrated credential manager installed on your system.
You can run windows executables from WSL as found here.
To use it you can run the following command (assuming that your git for windows is installed on C:\Program Files\Git)
git config --global credential.helper "/mnt/c/Program\ Files/Git/mingw64/libexec/git-core/git-credential-manager.exe"