Bitbucket fails to authenticate on git pull

后端 未结 16 1192
无人共我
无人共我 2020-12-12 11:40

I use BitBucket and had to change my password because it was compromised.

git pull

remote: Invalid username or password. If

16条回答
  •  [愿得一人]
    2020-12-12 12:10

    You need to reset the password as shown below.

    On macOS:

    git config --global credential.helper osxkeychain
    

    On Windows 10:

    git config --global credential.helper store
    

    After executing this, it prompts you for the user name and password for your repo.

提交回复
热议问题