How can I solve "fatal: Invalid credentials" error when pushing to Bitbucket?
Asked Answered
R

16

191

My Bitbucket password is correct because I can easily log in with this password. When I try to push a project or file to Bitbucket it shows "Invalid credentials error".

git push -u origin master

fatal: Invalid credentials
Password for 'https://[email protected]':
remote: Bitbucket Cloud recently stopped supporting account passwords for Git authentication.
remote: See our community post for more details: https://atlassian.community/t5/x/x/ba-p/1948231
remote: App passwords are recommended for most use cases and can be created in your Personal settings:
remote: https://bitbucket.org/account/settings/app-passwords/
fatal: Authentication failed for 'https://bitbucket.org/username/demo.git/'

How can I solve this issue?

Reagent answered 7/3, 2022 at 9:23 Comment(0)
C
40

I had the same problem with my JetBrains IDE. It was showing a password dialog when I tried updated project sources or push my commits.

enter image description here

I solved the problem by following the below steps

  • Open App Passwords page of personal settings on the Bitbucket enter image description here
  • Click on Create app password and tick at least the read and write permissions of the repositories for the basic pull and push actions. Then give some label and submit by Create. enter image description here
  • The generated app password should be passed in IDE enter image description here
Contact answered 19/3, 2022 at 10:35 Comment(4)
For those looking for a solution using VS Code, the idea is pretty similar. When entering the push command a new prompt should appear at the top of the screen saying that you can press 'Enter' to push. This will fail because you are actually supposed to paste the password in the little text box that say 'Password' just above. So you just copy and paste like here and voilá.Clein
What JetBrains IDE? JetBrains is the name of the company. They have many IDEs, e.g. IntelliJ IDEA, PhpStorm, and PyCharm.Lewert
@PeterMortensen It doesn't matter which one, as VCS works the same for all the IDEs listed above.Contact
Working with VScode as well :) :)Mala
B
300

When prompted to log in, use your username, but instead of your usual account password, use the app password:

To get the app password

  1. Go to the bitbucket.org website and log in
  2. From your gear in the upper right, and click Personal Bitbucket settings
  3. Click App passwords under Access management
  4. Click Create app password
  5. Give the app password sufficient rights (probably write on the repo at a minimum), and a label related to the application that will use the password
  6. Don't forget to save that password
Bevan answered 9/3, 2022 at 3:46 Comment(8)
[MacOS] If you still facing issue after above steps, try cloning project again.Hebbel
[Windows] you can remove previous bitbucket token credentials stored in your machine using CREDENTIAL MANAGER in windowsDiazonium
[MasOS] [Sourcetree] 7. Sourcetree -> Preferences -> Accounts 8. Create Account with new passowrd 9. Now you can clone via HTTPSSquib
Do not forget to set needed permissions - at least Account Read and Repositories Read and Write!Aguayo
Also, the username value is at general/account-settings/bitbucket-profile-settings@usernameDarnley
WTF, I've setup an ssh key and everything and THIS was it? Man, that's carzy, thanks a lot!Fulani
@Squib please update this answer with permission settings, as 'just creating an app password' does not work without guessing the right permissionsLobelia
@AlexV - I've added some comment on permissions, but if someone can't recognize what permission is necessary for pushing to a repo, I'm pretty sure they not should be doing so.Squib
A
68

After 2022-03-01:

Beginning March 1, 2022, you will no longer be able to use your Atlassian account password when using Basic authentication with the Bitbucket Cloud REST API or Git over HTTPS.

  1. Go to: Personal settings, App passwords
  2. Create app password
  3. Tick the necessary permissions for your needs. Account Read and Repositories Read and Write are needed for basic Git actions.
  4. Save the password. You can not view it again!
  5. Use the generated password to log in. You might need to use your Bitbucket username that you can find on Personal settings, Account settings under "Bitbucket profile settings" (saw a post that told specifically to use the username don't know if it is true).

More information about app passwords is on App passwords.

Airlike answered 10/3, 2022 at 13:22 Comment(7)
Now, which are the "necessary permissions for [my] needs"? Using command-line git and have no idea which permissions are necessary beyond 'repositories' read and write???Woodpecker
Added that part to point nr 3.Airlike
Can you add that as an answer, Mikk, to my SO question here? (Just the permissions part)Woodpecker
This one explained it best. The page i came across in the bitbucket page only explained why it is not supported anymore but does not provide instructions on what to do next.Chian
Isn't this backwards? They used to support OAuth, which was both user-friendly and secure. Are you sure you are not misunderstanding something, or the problem is really something else?Jordanjordana
What specifically is the "Account Read" permission for? Doesn't the Git CLI just need to access the repository?Lanam
should be the best answer instead of the above upvoted, because of the permission settings tip: creating app password is obvious, but setting the right permissions not - only point No 3 helped me to push code to bitbucketLobelia
C
40

I had the same problem with my JetBrains IDE. It was showing a password dialog when I tried updated project sources or push my commits.

enter image description here

I solved the problem by following the below steps

  • Open App Passwords page of personal settings on the Bitbucket enter image description here
  • Click on Create app password and tick at least the read and write permissions of the repositories for the basic pull and push actions. Then give some label and submit by Create. enter image description here
  • The generated app password should be passed in IDE enter image description here
Contact answered 19/3, 2022 at 10:35 Comment(4)
For those looking for a solution using VS Code, the idea is pretty similar. When entering the push command a new prompt should appear at the top of the screen saying that you can press 'Enter' to push. This will fail because you are actually supposed to paste the password in the little text box that say 'Password' just above. So you just copy and paste like here and voilá.Clein
What JetBrains IDE? JetBrains is the name of the company. They have many IDEs, e.g. IntelliJ IDEA, PhpStorm, and PyCharm.Lewert
@PeterMortensen It doesn't matter which one, as VCS works the same for all the IDEs listed above.Contact
Working with VScode as well :) :)Mala
M
38

After successfully creating the app password as mentioned by Asyraf Arifin:

To use Bitbucket "App Password" over HTTPS, you can then navigate to particular repository's path in Terminal then set the remote origin (for an already-cloned repository):

git remote set-url origin https://<Bitbucket_Username>:<App_Password>@bitbucket.org/<Bitbucket_Username>/<Repo_Name>.git

For a new clone:

git clone https://<Bitbucket_Username>:<App_Password>@bitbucket.org/<Bitbucket_Username>/<Repo_Name>.git

enter image description here

Mathian answered 10/3, 2022 at 12:40 Comment(4)
The use of bitbucket_username is confusing here. The first is the login username, the 2nd is the BB accountname of the repos, thus: "git remote set-url origin https://<Bitbucket_YourLoginUsername>:<App_Password>@bitbucket.org/<Bitbucket_Your(Company)RepoAccountName>/<Repo_Name>.git"Matildematin
If you do this, it fails. When you give your username, it fails, when you give your email, it explains the proper commands.Kuhl
@YannickMussche I have added screenshot for your reference.Mathian
Thank you but I know what my username is.Kuhl
L
32

My answer is just a compilation of Mikk Raudsepp's and Anish's answers.

  1. Go to: Personal settings, App passwords

  2. Create app password

  3. Tick the necessary permissions for your needs.

  4. Copy the generated password

  5. On Terminal

    On an already-cloned project:

     git remote set-url origin https://<Bitbucket_Username>:<App_Password>@bitbucket.org/<username/repoName>.git
    

    To clone a new project:

     git clone https://<Bitbucket_Username>:<App_Password>@bitbucket.org/<username/RepoName>.git
    

Why is it happening? -

Beginning March 1, 2022, you will no longer be able to use your Atlassian account password when using Basic authentication with the Bitbucket Cloud REST API or Git over HTTPS.

Lenna answered 11/3, 2022 at 7:30 Comment(3)
do we need to write these symbols: "< >"?Toffeenosed
nop. we don't need to.Lenna
You forgot to add <Bitbucket_Username> before <Repo_Name>. When copying someone else's code, be sure to copy the entire code;)Schoolbag
J
18

Go to Personal settings from the menu at the top. Click on App passwords and set up the permissions as required as shown below.

Copy the generated password and use it on the authentication prompt. This will resolve the issue.

Enter image description here

Jeanmariejeanna answered 12/4, 2022 at 4:23 Comment(1)
Thanks a great deal. Expended energy for no reason whatsoever when its so easyVannavannatta
A
6

enter image description here

Note in Repository Need Admin access and use updated password in terminal

Ankylose answered 22/6, 2023 at 12:15 Comment(0)
R
5
  • Go to Credential ManagerWindows CredentialsAdd a generic credential

  • Fill up the fields:

    • Network address: git:https://bitbucket.org
    • Username:
    • App Password:

It was solved by this question.

Reagent answered 7/3, 2022 at 11:47 Comment(1)
Re "Windows Credentials": Isn't it under "Generic Credentials"?Lewert
B
5

If any Linux user is facing the same issue, please follow the steps given below.

  1. Go to bitbucket.org
  2. Click on the Login link
  3. At the bottom left, click on your avatar icon (your profile picture).
  4. Then click Personal settings or you can open Personal settings, Account settings directly
  5. In the Access Management section, click on the App password link or you can go directly to Personal settings, App passwords
  6. Click on the Create App password button.
  7. Give the access rights as per your requirement.
  8. Click on Create.
  9. You get the pop up with a password. Copy that password somewhere in your laptop or pc (the given password will be difficult to remember).
  10. Now whenever you’re are performing a Git operation, like pull or push and if they asked for password. Instead of using your login password, you need to use the above password (one which is generated by the app password).
B answered 11/3, 2022 at 8:16 Comment(0)
K
3

In my case I had no option to create app passwords. Instead there was an option to create Personal access tokens. Now, once you create a token, you have to put the same token in place of the password. This works in Android Studio / IDEA as well as on the command prompt.

enter image description here

Kimsey answered 7/10, 2022 at 6:1 Comment(0)
T
1

I created an app password, made sure the user is username and not email, then updated the app password in Windows' Credential Manager. Adding the app password in the repository path finally resolved my issue:

From:

https://[email protected]/...

To:

https://username:[email protected]/...
Tangram answered 24/3, 2022 at 11:24 Comment(0)
T
1

I had some problems with this on my Mac using Android Studio. I fixed it by going into the Android Studio terminal tab and writing

git push 

Then it told me that fatal: The current branch blabla_branch_name has no upstream branch. To push the current branch and set the remote as upstream, use

git push --set-upstream origin blabla_branch_name

So I copied and pasted that into the terminal and hit enter again. This time it asked me for a password. I went into my bitbucket account online and created a new app password. Then I copied that password that it created, and pasted it into the terminal and hit enter. This seems to have reconnected the device and bitbucket and things work again.

Thetes answered 26/6, 2022 at 8:19 Comment(0)
T
0

Try setting-up passwordless login. With this method, you will never need to worry about remembering the password again on your machine (but don’t use this technique on public computers)

See Atlassian documentation: Set up an SSH key

Turnout answered 31/3, 2022 at 13:55 Comment(0)
D
0

If you already generated an app password, if you are using VSCode and you have installed the Atlassian extension, then click on the git pull/push button and this will open the login dialog. Click authorize and that's it. Now you are logged in.

enter image description here

Deloris answered 6/6, 2022 at 6:4 Comment(0)
C
-1

For Mac users:

cd Library/Application\ Support/SourceTree

Delete your username here.

You can log in again.

Crematorium answered 9/3, 2022 at 15:53 Comment(0)
H
-1

Try creating ssh key and add ssh key to the bitbucket and try

Hasid answered 20/5, 2022 at 11:5 Comment(1)
Sunil Garg already suggested this. Please don't repeat answers.Schriever

© 2022 - 2024 — McMap. All rights reserved.