Reputation: 1559
I connected with bitbucket and I installed Git and sourcetree in my computer and I try to connect sourcetree and bitbucket together. but I couldn't connect both. when I try to clone repository source path, it says
this is not a valid source path...
git: 'credential-osxkeychain' is not a git command. See 'git --help'.
like this error
I don't have any idea about credential-osxkeychain file, and I'm using windows os
can anyone help me to solve this problem?
Upvotes: 7
Views: 17204
Reputation: 2719
On a windows machine WinCred
can be used to store credentials. Set Git to use windows credentials manager by running
git config --global credential.helper wincred
Try git fetch or pull
and it should prompt credentials again and store it in credential manager.
Credential manager can be found at Control panel (search would point at right direction). This would come in handy to delete credentials quickly.
Upvotes: 4