"C:\ProgramData\Miniconda3\Scripts\gh.exe auth git-credential get: C:ProgramDataMiniconda3Scriptsgh.exe: command not found" Error message showing when I use git push. git push task is completed successfully but this error message is showing annoyingly I already cached my PAT with Github CLI succesfully. My only problem is that above error message.
Help me to figure it out.Here is the screenshot of error message in git push
CodePudding user response:
Check the output of git config credential.helper
(or git config --global credential.helper
)
if it includes a path with \
in it, do a git config (--global) --edit, and escape backslashes: each \
becomes a \\
.