Git - Support For Password Authentication Was Removed. Please Use A Personal Access Token Instead - Stack Overflow
Git - Support For Password Authentication Was Removed. Please Use A Personal Access Token Instead - Stack Overflow
488 remote: Support for password authentication was removed on August 13, 2021. Please
use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-
token-authentication-requirements-for-git-operations/ for more information.
fatal: unable
to access "..." : The requested URL returned error: 403
166
It's very weird, because I just follow the documentation and created a token two weeks ago on
GitHub that expires on Tue, Oct 26, 2021. Why has this been removed today?
5 I don't understand the question. Literally from the link in the error message "Beginning August 13, 2021,
we will no longer accept account passwords when authenticating Git operations on GitHub.com."
– njzk2
Aug 14 at 21:42
9 This was an unpleasant thing to deal with. I had not seen any warnings. This simple one-line command
solution in an answer below worked for me git remote set-url origin
https://<token>@github.com/<username>/<repo>
– Kai Carver
Aug 17 at 20:31
5 I get this stupid error even though I already have an ssh key
– munchschair
Aug 18 at 16:45
From August 13, 2021, GitHub is no longer accepting account passwords when authenticating Git
operations. You need to add a PAT (Personal Access Token) instead, and you can follow the
597 belowOverflow
Join Stack method toto add
learn, shareon
a PAT knowledge, and build your career.
your system. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 1/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
For Windows OS ⤴
Go to Credential Manager from Control Panel => Windows Credentials => find
git:https://github.com => Edit => On Password replace with with your GitHub
Personal Access Token => You are Done
If you don’t find git:https://github.com => Click on Add a generic credential =>
Internet address will be git:https://github.com and you need to type in your username
and password will be your GitHub Personal Access Token => Click Ok and you are
done
For macOS ⤴
Click on the Spotlight icon (magnifying glass) on the right side of the menu bar. Type
Keychain access then press the Enter key to launch the app => In Keychain Access,
search for github.com => Find the internet password entry for github.com => Edit or
delete the entry accordingly => You are done
For a Linux-based OS ⤴
For Linux, you need to configure the local GIT client with a username
and email address,
$ git config -l
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 2/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
Now cache the given record in your computer to remembers the token:
$ git pull -v
Linux/Debian
(Clone as follows):
For PhpStorm
If you are using PhpStorm, go to menu Git => pull and select authentication via
Personal Access Token. Enter your PAT it will allow to pull/push the changes.
2 Given that the OP states they already created a token two weeks ago, this doesn't address the actual
problem.
– 9769953
Aug 14 at 11:55
3 Ummmm, it isn't asking for a token when I clone my repo, how should I proceed then?
– Prhyme
Aug 14 at
15:16
2 Same experience as @Prhyme. I am not able to get git to prompt me for username and password, even
trying to clone private repos, push to repos, etc. When I go to push to a repo, it continues to give the
"Support for password authentication was removed" message, without prompting for anything.
– 9gt53wS
Aug 14 at 19:08
2 For mac first time, when you are prompted for a password when you pushing the code to your repo, enter
the access token, It will add the token in the keychain and it won't prompt again.
– Dhiraj Himani
Aug 23 at
5:38
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 3/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
241 1. Go to this link: https://github.com/settings/tokens (Profile -> settings -> developers setting ->
personal access tokens). (don't go to repository setting; it's your profile setting)
4. Search for github.com (if there are multiple GitHub logins then choose Kind: Internet
password ), double-click it.
5. Click on show password, then enter your Mac's password and hit Enter .
6. Password should be visible by now. Now, just paste the token you generated in step 2 and
click Save changes .
2. Search for an application in your Windows OS, named Credential Manager → then Windows
Credentials.
3. Search for github.com and edit the password with the token you have generated on
GitHub.
Now enjoy!
While cloning:
Cons: You have to remember or should need to do to each repository in your local. So I'll prefer
everyone to use above mentioned steps.
NOTE:
For those who don't have this entry: it could be made. one way to do it is- to clone a project. then
it will ask for your username and password. instead of password give it the token and then the
entry would be made.
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 4/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
2 I found that on Windows, it was necessary to delete the existing credential in the credential manager.
Then, the next time I tried to do a git push , it prompted for the Personal Access Token. Simply resetting
the existing credential did not work.
– J. Peterson
Aug 16 at 7:48
1 saved my day 👍 developer heck shortcut was great for me, just removed old remote url and added new
one (mac, but i belive this is the case for all OS)
– Inzamam Malik
Aug 16 at 8:52
Use My Account → Settings → Developer settings → Personal access tokens → Generate new
token.
167
git remote set-url origin https://<token>@github.com/<username>/<repo>
7 Note that this seems to require running this command in each repo for that repo to be reset with the new
credentials. Hopefully there is a global solution.
– 9gt53wS
Aug 14 at 19:08
8 This one perfectly worked for me. The above one with maximum vote didn't work.
– Kapilfreeman
Aug 14 at
20:55
3 Thanks! Using token as password not work, but adding this work awesome
– Syorito Hatsuki
Aug 16 at
4:28
4 This is very insecure, not only does it allow anyone on the local system with read access to the local repo
control over that repo, git remote -v simply discloses the key giving the attacker account wide access
to your GitHub account.
– Joshua Kolden
Aug 17 at 20:48
4 @ßãlãjî OS key managers and browsers take grate pains to secure credentials. Normal git workflow do not
expose passwords or ssh private keys to other users with read access to a repo. The above advice does. It
allows anyone with read access to a copy of a local repo, including for example a shared work or school
filesystem, to see the user's clear text Personal Access Token. This extends to archived copies as well,
such as source tarballs that retain the .git directory.
– Joshua Kolden
Aug 18 at 4:27
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 5/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 6/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 7/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 8/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
PS: If you are annoyed by Git asking for username/token again and again,
follow these three simple steps
Run nano ~/.git-credentials . Remove the GitHub line and save it.
Run git pull and provide the username and password only once
It will not ask for the username and access token again and again now!
1 Those are a lot of permissions. What are you using that token for?
– Bergi
Aug 14 at 13:15
It all depends on the use case you want to use that token for. So select those permissions according to
your use case.
– Umar Hayat
Aug 14 at 15:37
This message means that you're using a password instead of a personal access token to access
GitHub over HTTPS, and that's no longer allowed. GitHub has disabled password authentication
59 because it's common for people to accidentally leak their passwords, and while a personal
access token can be restricted to limit the damage, a password cannot.
If you haven't explicitly entered your password at a prompt, then it's likely you have a credential
manager which is saving your password and sending it without prompting you.
You can follow the directions for clearing your credential manager listed in the Git FAQ:
You should use this same URL, but replace account with your own username (e.g., in my case, it
would look like echo url=https://[email protected] ).
Then, the next time you try to push or pull, Git will prompt you for a username and password. For
the username, enter your GitHub username, and for the password, generate a new personal
access token on the appropriate settings page and paste it into the password field. If you're
working from the command line, you may not see any indication that the password was
successfully pasted; this is normal, so just hit Enter afterwards.
That will save the personal access token in your credential manager for the next time, assuming
you have one set up. If you're not sure if you have one set up, run git config
credential.helper and see if it outputs anything.
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 9/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
If you don't have one set up, you should add one so that you don't have to memorize your token.
Run one of the following commands, depending on operating system:
Then you can try the push or pull again until you're no longer prompted.
1 Thanks for the info, I just tested git config --global credential.helper osxkeychain and git
config --global credential.helper but nothing is happening in my console, so I will try the first
solution. Just one question, what is the url=https://[email protected] ? The link of my repot or my
github?
– Daemes
Aug 13 at 17:22
2 The technique I've mentioned above will clear the password on any system so Git will prompt for it again.
That's why we documented it in the FAQ, because the directions are different for each individual OS and
credential helper and it's too hard to write a single answer that applies to all systems when it involves the
GUI.
– bk2204
Aug 13 at 19:56
2 echo url=https://[email protected] | git credential reject was just what I needed. Thank
you!
– Nolan Strait
Aug 17 at 18:39
GitHub has made changes in password authentication. If you are trying to access Git by
username and password then it does not allow you. So use a personal access token instead of
37 a password to access Git everywhere.
Step 4
Join Stack - From the
Overflow Developer
to learn, Settings, menu
share knowledge, clickyour
and build on Personal
career. access token Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 10/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
Step 5 - From the Personal access token click on the Generate new Token button.
Step 6 - Now fill up required details like Note, Expiration, Select scopes. And then click on
below Generate Token button.
Step 7 - After that new token has been generated. Copy that generated token and use this token
to access Git with username and token.
If you are using Windows then please follow the below step.
Open Control Panel => User Accounts => Manage your credentials => Windows
Credentials.
It will show all generic credentials. Find your GitHub URL and click on that. Now click on the edit
button. And then add the personal access token generated from GitHub into the password field.
And click on the Save button.
If you are accessing Git in Android Studio, if asked for a password then add the GitHub personal
access token instead of your password everywhere.
1 You are my hero. At first it did not work because for me the correct GitHub URL in the credential manager
was git:gitshub.com and not github.com/username. Maybe it helps someone. Also I am of the opinion the
hatefulness of GitHub knows no bounds.
– Lars Wissler
Aug 14 at 11:31
There's a alternative way as well to do that: you can use direct ssh key as well: youtu.be/egdJy_FWUh4
– Code Cooker
Aug 21 at 16:38
And, if I am using Linux command line ? Edit: answer: just use the token as password...
– 3xCh1_23
Aug
24 at 18:45
1 @Lars Wissler Thank you so much, you saved me! git:github.com is the correct address indeed.
– Blue Phoenix
Sep 2 at 1:39
30 If you have cloned your repository in the past and made it as origin, then you can change the
authentication so,
Join Stack
git Overflow to learn,origin
remote set-url share knowledge, and build your career.
https://<token>@github.com/<username>/<repo>.git
Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 11/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
If you are going to clone repository after 13 August 2021, then you can use the normal clone
command and set the generated access token in the password field.
If you're like me and have years worth of git repos that you used password based auth on. I have made
this: find . -type f -path '*/.git/*' -name 'config' -exec sed -i
's%https://github.com/%[email protected]:%g' {} \; It will recursively search in the .git folder for
any file called config and find and replace the https URL with the git@github one. I'd recommend only doing
this on simple repos where you know you have plain vanilla remotes. I haven't tested how it will work on
different setups. YMMV!
– robmsmt
Aug 17 at 2:05
I tried removing the username and it worked: git remote set-url origin
https://<token>@github.com/<repo>.git
– doubleo46
Aug 20 at 7:07
git push
username: user_github_username
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 12/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
At the first, when I add, commit, and push, then I meet this issue:
In my case,
When I push failed, the only thing I need is this one command:
Join Stack
git Overflow to learn,{branch_name}
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 13/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
It works.
--
By the way, this is the process of creating an SSH key to GitHub account.
You can refer to these two links to do it. The information here supports Mac, Windows, and Linux.
Furthermore, if you want to clone a new project, you can do the following command:
2 I bet this works only because you have an SSH key added to the github account.
– HolyBlackCat
Aug 14 at
15:17
Thanks a lot. I will add some simple processes of creating an SSH key tomorrow. GitHub official doc also
introduces how to do it, but that's is too complicated for junior people.
– Milo Chen
Aug 14 at 15:35
I've done to add the process of creating an SSH key to github account by refer two excellent links.
– Milo Chen
Aug 15 at 4:57
Do not forget to copy and the token after generation. It is accessible only once.
Windows
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 14/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
3. Click on Edit.
MAC
I found that on Windows, it was necessary to delete the existing credential in the credential manager. Then,
the next time I tried to do a git push , it prompted for the Personal Access Token. Simply resetting the
existing credential did not work.
– J. Peterson
Aug 16 at 7:51
Try commit/pushing.
If thatOverflow
6 Stack
Join is the case, the only
to learn, thing
share you needand
knowledge, to do is use
build yourtoken
career.in place of password.Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 15/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
git pull
In my case after doing "git pull", just do "git pull" a second time and you should get prompted for the
username and password automatically. It shouldn't require you go to delete your password in the OS
settings.
– P.Brian.Mackey
Sep 9 at 15:27
In Linux, you can generate a new access token in GitHub and directly replace it in place of the
password in the ~.git-credentials file.
5
The password section starts with : and ends with @ .
Just instead of the keychain, you need to set up Credential Manager with the newly generated
token.
Join Stack
Go toOverflow to learn,
Settings → sharesettings
Developer knowledge, and buildayour
→ generate newcareer.
token if it does not exist. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 16/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
If you have not installed GitHub CLI, you would not find it in your keychain Access. Therefore you
should install it first.
brew install gh
For Windows:
winget install gh
scoop install gh
choco install gh
2. On the command line, enter gh auth login , follow the prompts, and provide the following
answers
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
? What account do you want to log into? GitHub.com
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 17/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
? How would you like to authenticate GitHub CLI? Paste an authentication token
As a security precaution, GitHub automatically removes personal access tokens that haven't
been used in a year. To provide additional security, we highly recommend adding expiration to
3 your personal access tokens.
Run these commands inside your project directory if the project was cloned before 13 Aug 2020:
git pull
3 Open Credential Manager and just remove the already-saved credentials for Git:
https://github.com.
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 18/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
After this step, run the command again for pull/push in the terminal. GitHub will ask to log in with
your default browser automatically (make sure you are logged in with GitHub in the default
browser).
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 19/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 20/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
For more help related to this, you can also watch this video.
remote: Support for password authentication was removed on August 13, 2021. Please use
a personal access token instead.
I generated a new access token on github.com, removed my GitHub account from Android
Studio, and added the account again with the new access token. But still, it was showing the
same error.
Reading other solutions on Stack Overflow, I downloaded the GitHub CLI, and added my GitHub
account in the Windows command prompt with the access token successfully, and tried to push
the repository from Android Studio again, which again failed.
Then following this article, I did the following at the command line:
cd <project-directory>
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 21/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
In three commands:
2 First create a token as indicated in the official documentation: Creating a personal access token
Recently GitHub updated their remote: Support for password authentication. Which was removed
on August 13, 2021 to use PAT (personal access token) instead for accessing the GitHub API.
2
You can read about in the blog post here.
Username: your_username
Password: your_token
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 22/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
Note that your token has an expiry time and must be kept privately and used whenever you need
to authenticate on the command line.
Heads up
If your are cloning into a repository that is owned by an:
Organisation
The organisation/personal will need to enable remote cloning and forking like so:
Go to organisation settings:
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 23/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
https://<token>@github.com/<username>/<repo>
For those who followed the instruction to generate the Personal access tokens, but forgot to
select suitable scopes:
1
Please do remember to choose suitable scopes like repositories. You won't get a different error
prompt whether you use the previous password or a new token without a suitable scope.
Re "choose suitable scopes like repositories" (seems incomprehensible): Do you mean "choose suitable
Join Stack Overflow
scopes to learn, share
for repositories" knowledge,
? Or something and
else? build respond
Please your career. Sign, up
by editing (changing) your answer not here
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 24/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
in comments (without "Edit:", "Update:", or similar - the answer should appear as if it was written today).
– Peter Mortensen
Sep 5 at 9:25
For anyone who uses Sourcetree as the Git client, open Preferences → go to the Accounts tab →
Add GitHub account → Auth type = basic → fill in your GitHub account and the access tokens
1 from GitHub you created as a password → Use HTTPS protocol → done!
0 1. Install GitHub CLI, brew install gh or check how to install for other OSes
Choose GitHub.com
Choose HTTPS
Choose Yes
In case someone is looking for way to install brew on Arch based distros:
gist.github.com/fardjad/114ebf50a0dd031418bb63b3b134db51
– Harry Adel
Sep 7 at 21:32
Yesterday I had some issues trying to find GitHub on the Keychain in my Macbook. I've tried a lot
of ways with no success.
0
From my perspective, the workaround I've used to be able to pull and push from my GitHub
account
Join Stack fast, was
Overflow doingshare
to learn, it by SSH.
knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 25/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
3. If you already created a ssh locally just run pbcopy < ~/.ssh/id_rsa.pub in your terminal
4. Then pull, push, clone or whatever you need from your GitHub repo and it's done
I know this is not the solution to the issue, but it worked for me since I needed to do it fast and to
me honest there is no reason that I need to use https instead of SSH
Cheers!
Can you provide more details? Do you already have a ssh generated? Also, make sure when you are
cloning the repo you change. HTTPS to SSH
– undefinedsoul
yesterday
I was not able to clone the project was always giving this error. The solution I encouraged was,
after having generated the Token as the post was spoken in the post, I did as described below.
0
Using personal access token for the cloning new project
For cloning also you just need to modify the url as you have done instep 2
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 26/27
23/9/21 20:39 git - Support for password authentication was removed. Please use a personal access token instead - Stack Overflow
This does not provide an answer to the question. Once you have sufficient reputation you will be able to
comment on any post; instead, provide answers that don't require clarification from the asker. - From
Review
– Daly
yesterday
Highly active question. Earn 10 reputation (not counting the association bonus) in order to answer this question.
The reputation requirement helps protect this question from spam and non-answer activity.
Join Stack Overflow to learn, share knowledge, and build your career. Sign up
https://stackoverflow.com/questions/68775869/support-for-password-authentication-was-removed-please-use-a-personal-access-to 27/27