简体   繁体   中英

Authentication failed for bitbucket

git init
git add .
git commit -m 'nazwa commita'
git remote add origin https://NazwaUżytkownika@bitbucket.org/NazwaUżytkownika/test.git
git push -u origin --all

I must enter pass and email. When I enter mail and pass I get the error " failed to auth".

I tried

git remote add origin https://username:pass@bitbucket.org/username/projekt.git

and that worked.

Now I must use

git clone (here link to bitbucket)

and this doesn't work: I get the error

remote: Unauthorized fatal: Authentication failed for.

When I'm using username:pass@bitbucket I get error 500 ....

This should work; I have used it many times with bitbucket for my Scala courses:

git clone https://username:pass@bitbucket.org/username/projekt.git

Git credentials is a way for you to not have to type in username and password all the time.

You might want to look at URL encoding for the special characters.

SSH is best. Yes, it is confusing at first. Eventually you will need to learn this.

What worked for me was changing my password. Not through the admin page ("My Atlassian Account"), which also didn't work. Instead, log out of BitBucket, click on the password recovery link, and follow that process. Try again with your new account password.

I faced a similar issue while cloning a repository from Bitbucket. Here is one possible solution that worked out for me. As per their access management system, Bitbucket has this security thing known as "App passwords". You can find it under 'Personal settings → Access Management → App passwords' as shown below. Bitbucket.Personal.Settings

  • Once there, click on it and it will take you to the app password dashboard/list that you have created for your account (In your case, it should be empty). Now click on Create app password.

Bitbucket.App.Password.Page

  • You will be able to see a list of checkboxes denoting various permissions. Check them all. Give your app password a meaningful name(label) which will be for your future reference and hit Create as shown below.

应用程序密码选项

  • You will see a modal window popup with a unique app password generated by Bitbucket. You will also receive a mail notifying that an App password was created. This is important, so store this password somewhere safe . You will be needing it during cloning your repo from any git client.

App.Password.Unique.Value 应用程序密码列表

  • You can also revoke this password at any time and create a fresh one.
  • You should be able to see the newly created app password in the app password list page. Now use this unique app password while cloning into a repository instead of your account password.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM