Bitbucket git credentials if signed up with Google

后端 未结 9 1767
时光说笑
时光说笑 2021-01-29 18:16

I have an account on bitbucket.org that I created by signing up with my Google account. Now everytime I log in I just click \"Log in with Google\" and that\'s fine.

How

相关标签:
9条回答
  • 2021-01-29 18:33

    Solved:

    • Went on the log-in screen and clicked forgot my password.
    • I entered my Google account email and I received a reset link.
    • As you enter there a new password you'll have bitbucket id and password to use.

    Sample:

    git clone https://<bitbucket_id>@bitbucket.org/<repo>
    
    0 讨论(0)
  • 2021-01-29 18:34

    It's March 2019, and I just did it this way:

    1. Access https://id.atlassian.com/login/resetpassword
    2. Fill your email and click "Send recovery link"
    3. You will receive an email, and this is where people mess it up. Don't click the Log in to my account button, instead, you want to click the small link bellow that says Alternatively, you can reset your password for your Atlassian account.
    4. Set a password as you normally would

    Now try to run git commands on terminal.

    It might ask you to do a two-step verification the first time, just follow the steps and you're done!

    0 讨论(0)
  • 2021-01-29 18:34

    you don't have a bitbucket password because you log with google, but you can "reset" the password here https://bitbucket.org/account/password/reset/

    you will receive an email to setup a new password and that's it.

    0 讨论(0)
  • Update as at September, 2019:

    This whole process is now way easier than it used to be. It doesn't matter if your auth style is regular or Google-dependent, it works regardless. Follow these four easy steps:

    • Visit this link and enter your email.
    • Check your mail for the reactivation email and click the big blue button therein.
    • Change your password!

    I hope this helps. Merry coding!

    0 讨论(0)
  • 2021-01-29 18:46

    You should do a one-time setup of creating an "App password" in Bitbucket web UI with permissions to at least read your repositories and then use it in the command line.

    How-to:

    1. Login to Bitbucket
    2. Click on your profile image on the right (now on the bottom left)
    3. Choose Bitbucket settings (now Personal settings)
    4. Under Access management section look for the App passwords option (https://bitbucket.org/account/settings/app-passwords/)
    5. Create an app password with permissions at least to Read under Repositories section. A password will be generated for you. Remember to save it, it will be shown only once!
    0 讨论(0)
  • 2021-01-29 18:47

    You can setup SSH key authorization like described here - https://confluence.atlassian.com/bitbucket/add-an-ssh-key-to-an-account-302811853.html.

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