I am running WSL2 and trying to get Git Credential Manager (GCM) set up so that I don't have to always copy-paste my Github Personal Access Token into my terminal. Once I added the credential manager I was unable to access my remote repositories, this is what my .gitconfig
looks like:
1 [user]
1 email = myemail@gmail.com
2 name = Name
3 [credential]
4 helper = /mnt/c/Program\\ Files/Git/mingw64/libexec/git-core/git-credential-wincred.exe
Now when I do a git pull
on the remote repository Git is telling me that it cannot be found. It's not clear to me why GCM is blocking me now, but would you have any recommendations for next steps?