Bitbucket fails to authenticate on git pull

后端 未结 16 1188
无人共我
无人共我 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:05

    Lately, BitBucket needs you to generate an App Password:

    Settings/Access Management/App Passwords.

    https://bitbucket.org/account/user/.../app-passwords

    0 讨论(0)
  • 2020-12-12 12:05

    I know that this is an old question, but I thought I would provide the solution that worked for me. I signed up for bitbucket using my google account and did not have a password. Turns out the password is my Atlassian account password. If you have an Atlassian account then try this password to see if it works.

    0 讨论(0)
  • 2020-12-12 12:08

    I was facing same error, But I didn't need to change my password.

    Just go to bitbucket->preferences->accounts select your account and check if your password is correct.

    In my case, my password was messed up. Just corrected my password and it worked.

    0 讨论(0)
  • 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.

    0 讨论(0)
  • 2020-12-12 12:10

    If you've changed the password on Windows 10, go to credential manager and update the password:

    0 讨论(0)
  • 2020-12-12 12:12

    I clicked on this button and it worked for me.

    Here is the screenshot

    0 讨论(0)
提交回复
热议问题