Git: 'credential-osxkeychain' is not a git command. See 'git --help'

I connected to bitbucket and I installed Git and sourcetree on my computer and I am trying to connect sourcetree and bitbucket together. but I could not connect both. when i try to clone the repository source path it says

this is not a valid source path... git: 'credential-osxkeychain' is not a git command. See 'git --help'. 

enter image description here

like this mistake

I have no idea about the credential-osxkeychain file and I use windows os

Can someone help me solve this problem?

+5
source share
1 answer

Is there a chance that

$ git config --get credential.helper

showing osxkeychain ? This only works on OS X.

Try to find the appropriate .gitconfig file (possibly in $ HOME) and delete the auxiliary credential line.

EDIT: Atlassian has documented the question .

+4
source

Source: https://habr.com/ru/post/1237215/


All Articles