Password authentication is temporarily disabled as part of a brownout. Please use a personal access token instead [duplicate]
Asked Answered
M

25

243

I was using a username password for pushing my code. It was working for several months, but suddenly I'm not able to do it and am getting this error:

Username for 'https://github.com': shreyas-jadhav
Password for 'https://[email protected]':
remote: Password authentication is temporarily disabled as part of a brownout. Please use a personal access token instead.
remote: Please see https://github.blog/2020-07-30-token-authentication-requirements-for-api-and-git-operations/ for more information.

Please note that the link doesn't help. Even using the generated token doesn't help.

Moderator Note: This is part of a planned and soon-to-be permanent service change by GitHub

Meaningless answered 30/6, 2021 at 8:45 Comment(22)
GIthub are removing username password authentication, you need to use a token from now onAshil
Reading that web page basically tells you all of this...Ashil
I have the same problem, and no, that page doesn't help. The problem is, even using a generated token as a password, the same error message appear.Disparity
I see the doc: Mid-2021 – Personal access or OAuth tokens will be required for all authenticated Git operations. Maybe we just here?Ageold
You can install Github CLI -> cli.github.com if you want to avoid manual setupKiethkiev
Why on earth is the word "brownout" used??Flashing
Is there a status update from Github? I have no intention of doing this pain in the ass token bs. Temporary brownout message means this should be back up. I checked status but it lied and said all green. Bueller Bueller?Fuge
In the meantime, git remote add not_broken_origin git@anywhere_but_github:repo works fine too.Renteria
@MichaelPaccione You'd better read github.blog/…. This was intentional and scheduled, and it will happen again in one month, and then in August it will become permanent. If you don't want to do it, fine, but you'll have to move your projects to another service.Sobel
@RossPresser A "brownout" is where you lose some, but not all, power. It's a throwback to the era of incandescent bulbs, where a small power loss could cause the bulbs to noticably dim. In this context, GitHub is "dimming the lights" to let everyone know about a pending change to the service (namely that passwords will stop working altogether soon).Deacon
@RossPresser Wikipedia explains brownout in software engineering to mean gradual disabling of partial functions of the service when the service is overloaded. --- Is github really overloaded, were they lazy to change the message or are they testing what will users tolerate?Chiba
the linked question's answer is not a good approach. it is basically the same answer which as accepted here before. the currently accepted answer on this question explains.Meaningless
@ShreyasJadhav The main reason to close this as a duplicate is that it was getting lots of simple answers that were all saying the same thing. This leaves the question for others to find, read and vote on.Deacon
Also useful is this SuperUser question which covers some additional ways to create and use a SSH key with WindowsDeacon
@Deacon i'm not asking why this closed. I meant to say is the answer posted on question you linked is an insecure way to solve this problem - as stated by GitHub. and the answers there are for 'unauthenticated server (Travis-CI)'. lot of people visiting here would just follow the link and get confused, and return back to get solutions for macOs, Windows and why the first answer not safe. which is think will just waste someones time.Meaningless
@FabiosaysReinstateMonica cross that bridge when it comes.Fuge
@pbauk, thanks for the relevant definition. I have never seen this term used with software before this; the Wikipedia page didn't even start being drafted until 4 years go. Github's blog from last year does use the term but doesn't define it. And they just threw it into the error message assuming we knew it already. That's rude.Flashing
@Deacon thanks also for the definition. At age 54, I am thoroughly aware of the history of the term brownout regarding power; it's new to software engineering though, as this ngram suggests.Flashing
This is not a duplicate of Issue on adding SSH key to GitHub. Personal access tokens are a different access method from SSH keys.Klaraklarika
Later developments: Support for password authentication was removed. Please use a personal access token insteadSpaak
We don't need 40 answers for this question. Many answers just repeat previous answers.Spaak
The usual Microsoft forcing people to do things in ways they don't want to, "trust us you will prefer it this way". NO! I think its time to change to GitLabCense
O
143

The previously accepted answer, Kusal Shrestha's, does the job, but it is not safe because we store the token in plain text.

Storing it in the keychain is the better approach in my honest opinion.

For Visual Studio Code please read crg's answer.

For Windows:

You can try the @Venryx comment below, but I haven't tested it.


For Mac:

I just faced this issue now

Enter image description here

As suggested, I went to the development settings by following this URL and generated a token.

Then I went to my key chain access in my Mac:

Enter image description here

I deleted (all) the row for GitHub

Enter image description here

Now I went to the terminal and pushed dummy code

git push

Terminal asked me to enter the email and password for my account.

I entered my email, and, for the password, I entered the token that I generated earlier.

Enter image description here

And it started to work again.

Ordure answered 30/6, 2021 at 10:6 Comment(4)
On Windows, use "Credential Manager" rather than "Keychain Access". Also, make sure you use "Powershell" rather than Command Prompt, else it errors. See here for full instructions: https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicatePrehistory
github should just add this post to their docsTalky
You don't need to delete the Keychain, you can just edit the password and add the tokenSodomite
This method will replace your Safari login credentials for github.com, which in turn will likely break future third party oauth approvals depending on the token permissions.Semitrailer
A
175
  1. Generate a new token from GitHub's developer settings

  2. Update the remote URL:

    git remote set-url origin https://<token>@github.com/<Git_URL>
    
  3. Pull once:

    git pull https://<token>@<Git_URL>.git
    

And you are good to go.

Andrien answered 30/6, 2021 at 9:56 Comment(19)
Try Github CLI -> cli.github.com . It does the deletion thing, you need to do OAuth onlyKiethkiev
For the "generate new token" step, which permissions/"scopes" do I enable for the new token? (I only want to enable the scopes needed for VSCode to push and pull from the repo properly)Prehistory
@Prehistory Which ever you think as necessary. You can check it from here. docs.github.com/en/developers/apps/building-oauth-apps/…Andrien
what is <git_url> ?Mollie
This is not a good solution IMO. The issue here is that then the PAT is stored in plain text in the remote URL itself. So, if someone is able to gain access to the remote URL, they then have access to your PAT to do whatever with. The token should be securely stored in a Keychain or something of that nature. Edit: I specifically mean step 3, where you're adding the PAT as a prefix to the remote URL.Questor
@Mollie The url where you clone the repo from. like github.com/kusalshrestha/react-native-mention.gitAndrien
@KMJungersen you can post your solution here :)Andrien
hey guys you can set url of remote, instead of remove and add it. please use follow instructiongit remote set-url <remote name> https://<token>@github.com/<git_url>Faxan
SSH keys are betterSheol
A drawback is that this stores the token in plain-text within the origin url. It's better to store the token in your system's credential storage, as explained here: https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicatePrehistory
@x-r everthing in the clone url except for https for example @github.com/USER/REPO.gitMandal
I got fatal: Couldn't find remote ref HEAD error at the last step of this solutionSolarize
@Mollie @x-rw <git-url> is url to your repo github.com/yourname/yourrepoDubbin
There's no "git dev settings". I'd expect an answer with a golden badge to know the difference between git and GitHub.Renteria
@ShreyasJadhav: Use Credential Manager or similar secure storage for the token instead of saving it as plain text in the remote URL.Tades
@user2357112supportsMonica could you post your ideal solution as an answer if you could? most of the answers are targeting only macOS. i would accept a single answer which compiles solutions for different OS' and work for most scenarios.Meaningless
else @KusalShrestha please edit your answer to mention the downsides of it too.Meaningless
@Mollie What is <git_url> ? For example, if your repo url is https://github.com/Ben/MyDemo, then your <git_url> is Ben/MyDemo.Peria
@Mollie the git url is user_name/repo_name example git remote set-url origin https://<token>@github.com/<user_name>/<repo_name> and then git push for existing repos.Almagest
O
143

The previously accepted answer, Kusal Shrestha's, does the job, but it is not safe because we store the token in plain text.

Storing it in the keychain is the better approach in my honest opinion.

For Visual Studio Code please read crg's answer.

For Windows:

You can try the @Venryx comment below, but I haven't tested it.


For Mac:

I just faced this issue now

Enter image description here

As suggested, I went to the development settings by following this URL and generated a token.

Then I went to my key chain access in my Mac:

Enter image description here

I deleted (all) the row for GitHub

Enter image description here

Now I went to the terminal and pushed dummy code

git push

Terminal asked me to enter the email and password for my account.

I entered my email, and, for the password, I entered the token that I generated earlier.

Enter image description here

And it started to work again.

Ordure answered 30/6, 2021 at 10:6 Comment(4)
On Windows, use "Credential Manager" rather than "Keychain Access". Also, make sure you use "Powershell" rather than Command Prompt, else it errors. See here for full instructions: https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicatePrehistory
github should just add this post to their docsTalky
You don't need to delete the Keychain, you can just edit the password and add the tokenSodomite
This method will replace your Safari login credentials for github.com, which in turn will likely break future third party oauth approvals depending on the token permissions.Semitrailer
O
45

Solution for macOS

I just followed the following instructions and that's solved my issue.

  1. Generate a personal access token for GitHub. Process to generate token
  2. Open your Keychain Access.
  3. Search for github.com and double click on that.
  4. Update the password with the key you've generated recently.

N.B: I'm not sure this will work for other operating system users.

Owings answered 30/6, 2021 at 10:3 Comment(3)
On Windows, use "Credential Manager" rather than "Keychain Access". Note that you may also need to change your git origin to include your username (otherwise it errors, for me at least). See here for full instructions: https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicatePrehistory
This worked on macOS for me https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicateWarram
This solution was the only one that worked for me after Aug 13. Updating remote URL solution did not work, in my case.Ganja
E
36

Here is a simple solution:

  • Go to GitHub → SettingsDeveloper settingsPersonal access tokens. Regenerate your token and copy it.
  • On any of your local repositories, when git push, enter your username, and the password is the generated token

Instead of manually entering your token for every HTTPS Git operation, you can cache your token with a Git client.

  • In a terminal, enter the following:
# Set Git to use the credential memory cache
git config --global credential.helper cache
  • To change the default password cache timeout, enter the following:
# Set the cache to timeout after 1 hour (setting is in seconds)
git config --global credential.helper 'cache --timeout=3600'
Ecto answered 30/6, 2021 at 17:33 Comment(2)
This was the best answer...but one additional step. Before this I had to set "git config --unset credential.helper"...then I entered "git config --global credential.helper cache", then I was good. I had to enter my username/newkey one last time...then I was good.Orozco
"the password is the generated token" This was the part I was missing!Pawnbroker
O
26

Password authentication is disabled by GitHub and is not supported any more. Create and use a personal access token (PAT) instead of a password.

Steps to follow:

  1. Remove GitHub stored credentials from the keychain. (For example, using "Keychain Access" on Mac, or "Credential Manager" on Windows)
  2. Generate access-token from GitHub SettingsDeveloper SettingsPersonal access tokensGenerate new token
  3. Save the token - as it will be available there for once only
  4. Run command git fetch (or git push, if fetching doesn't require permissions)

    If on Windows, you must run this from PowerShell, not the command prompt (CMD). The command prompt consistently fails with the remote: Password authentication is temporarily disabled message, despite identical inputs.

  5. It will ask for your user name and password.

    If it does not ask you for your username and password, you must change your Git remote URL to contain your username: https://[email protected]/repo-owner/repo-name.git (see approach 2 for instructions on changing remote URL)

  6. Use the access token instead of the password when it asks for a password (you will have to enter it twice)

Or the second approach:

  1. Generate access-token from GitHub: SettingsDeveloper SettingsPersonal access tokensGenerate new token
  2. Update the URL for origin locally: git remote set-url origin https://<token>@<git_url>.git
  3. Pull once: git pull https://<token>@<git_url>.git
Octosyllable answered 30/6, 2021 at 9:46 Comment(5)
This worked for me just now, not sure why it's being downvoted. Just use your usual github user name along with the access token from below guide in stead of your password. docs.github.com/en/github/authenticating-to-github/…Gualtiero
I think the first step is most important. If you skip, the error still appear.Mainland
Or even better, an SSH keySheol
Note: The approach above worked for me, but only when run from Powershell. When I run it from regular Command Prompt, it fails every time. (I have confirmed this 5+ times now)Prehistory
I've done more testing, and found another condition: The approach above (#1) only works if the Git url contains your username. For example, this works: https://[email protected]/ME/my-repo.git But this does not: https://github.com/ME/my-repo.gitPrehistory
W
19

Works for macOS, Windows and Linux

Solution 1

  1. Delete the existing repository (if you have any current changes, make a backup of it):

    mv my-repo my-repo.backup
    
  2. Create an SSH key and add it to GitHub (see GitHub documentation)

  3. Clone the repository for SSH: git clone [email protected]:group/repo-name.git

Solution 2 (recommended solution)

  1. git remote remove origin

  2. You have to add an access token (see GitHub documentation to generate a token)

  3. git remote add origin https://<token>@<git_url>.git

  4. git pull https://<token>@<git_url>.git

Using Visual Studio Code

  1. Remove your GitHub access:
git credential-osxkeychain erase
⏎  host=github.com
⏎  protocol=https
  1. git push or git pull

    It will prompt you with a modal dialog. Click Allow and follow the process.

Warram answered 30/6, 2021 at 9:59 Comment(1)
removing and readding the origin with the new personal token worked for me.https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicateAndrien
U
16

If you're using macOS

  1. First please delete all GitHub credential in the keychain and then please generate your token for use as your password instead (due to GitHub security policy): GitHub* → SettingsDeveloper settingsPersonal access token.

  2. Try to push or pull some things latest to/from your repository. Then Git will ask you for username and password. Enter your username and your generated token from GitHub.

Untouchability answered 30/6, 2021 at 10:1 Comment(4)
Guide by GitHub: docs.github.com/en/get-started/getting-started-with-git/…Handily
Alternatively, in keychain Access.app search for "github" and find the entry with the Kind listed as "Internet Password" (you may have entries for "Web form password" these are not what the terminal is using). Double click the entry to edit it. Check the box to "Show password". Replace the password with a github token. Click "Save Changes". You should now be able to do everything as before. Hope that's helpful.Coping
It's important to note that there are two "hidden conditions" for this to work: 1) Your git remote url must contain your username, eg. https://[email protected]/..., 2) On Windows, you must use Powershell rather than Command Prompt. For more details, see here: https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicatePrehistory
This worked on MacOS intel and m1 for me https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicateWarram
C
12

I tried every method, and finally it worked for me. I was unable to push in my repository because of this error, so please at least once try this!

_____________________________generate the personal access token:

  1. Click here and generate a personal access token. It's damn easy.

    https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token

    Now simply push it with the help of the PAT rather than password and username___________________

  2. To push changes to your repository:

    git push https://[Personal Access Token]@github.com/[User Name]/[Repository Name].git
    
Chladek answered 30/6, 2021 at 18:40 Comment(3)
This solution worked best as I am on a linux server and windows and mac keychain is not available.Knitting
This worked for me on Windows 10. I appreciate you leaving this here. Simple. GitHub should have included something like this in the docs.Franza
@Franza That's a huge compliment sir! Thank you !!!!Chladek
D
10

If you are using HTTPS

  • Generate a token in your token settings as indicated in the documentation

  • If the repository already exists, you must then change your remote URL in the format: https://<username>:<token>@github.com/<repository_url>

    git remote remove origin
    git remote add origin https://<USERNAME>:<TOKEN>@<GIT_URL>.git
    git pull # Verify
    
  • If you clone your repository

    git clone https://<USERNAME>:<TOKEN>@<GIT_URL>.git
    
Dingy answered 30/6, 2021 at 10:5 Comment(0)
B
7
  1. Create a personal access token

  2. On your Visual Studio Code command line:

    git config --global credential.helper [YOUR_TOKEN]
    
Balsaminaceous answered 30/6, 2021 at 10:7 Comment(1)
Note: This will not work if you've already set up git to read from your system credential manager, rather than hard-coded entries in your git config. Unfortunately, git does not warn you of this, so just silently fails, as it uses the outdated credential-manager entry rather than the new access-token added by the command above. To add the access-token to your system credential manager, see here: https://mcmap.net/q/47182/-password-authentication-is-temporarily-disabled-as-part-of-a-brownout-please-use-a-personal-access-token-instead-duplicatePrehistory
E
5

Solution for Ubuntu Server and an existing Git repository

Remove the password:

git config --global --unset user.password;
git config --local --unset user.password;

Change remote.origin.url. replace <username> by your GitHub username:

git config --global --replace-all remote.origin.url "https://<username>@github.com/PPEProjects/smile-eyes-be.git";
git config --local --replace-all remote.origin.url "https://<username>@github.com/PPEProjects/smile-eyes-be.git"

Pull/push

git pull
git push origin HEAD:develop

Enter the personal access tokens generated from Personal access tokens.

Eugeneeugenia answered 30/6, 2021 at 10:1 Comment(0)
H
4

Try this (it worked for me):

  1. Generate an SSH key with this guide: Generating a new SSH key
  2. Remove all old remotes that use HTTPS with git remote remove origin;
  3. Add a new remote using an SSH reference (you can get it with the "code" button in your repository and then press "ssh").

enter image description here

Harpp answered 30/6, 2021 at 10:6 Comment(0)
A
4

First from the post: Token authentication requirements for API and Git operations, it said

Mid-2021 – Personal access or OAuth tokens will be required for all authenticated Git operations.

So you need to use a personal access token (PAT) to push:

1 Get your personal access token

Login here to access the repository and add a new personal access token: Personal access tokens. Generate one and keep the token safe (it can't be shown once you leave).

(In Android Studio, you need to get the permission of "repo", "gist" and "read:org")

2 Push with the personal access token

After you get the token, you can push with a command like:

git push https://[personal access token]@github.com/[user name]/[repository Name].git
Ageold answered 30/6, 2021 at 10:15 Comment(1)
Thanks for posting this because it is adaptable to gists, too, as git push https://[Personal Access Token]@gist.github.com/[Gist ID].git . I needed this because despite checking create gists the options when creating my token, and repo interaction working with git, pushing to gists wasn't working after August 13, 2021.Catty
P
3

All you have to do is use a generated token instead of a traditional password:

Old method using a password:

git clone https://github.com/username/repo.git

Username: your_username
Password: your_password

New method using a token:

git clone https://github.com/username/repo.git

Username: your_username
Password: your_token

Step 1: Generating an API token from GitHub

Step 2: Replacing your previous cached password with the newly generated token

Professional answered 30/6, 2021 at 10:34 Comment(0)
M
3

I received this error when trying to push up in Visual Studio Code... But I opened up Terminal and pushed up no problem using a username and password.

It might be something you could try.

Mukund answered 30/6, 2021 at 19:32 Comment(0)
Z
3

This worked for me:

  1. Generate the personal access token (don't forget to copy the token)

  2. Open your Keychain Access (Mac) or Credential Manager (Windows).

  3. Update the GitHub password with the new personal access token in KeyChain Access/Credential Manager

  4. Last step: Do a Git clone (make sure you clone the repository in the proper directory location)

    git clone https://github.com/username/repo.git
    
    Username: your_username
    Password: your_token
    

In my case it did not prompt me for the username and password as it was already updated in Keychain Access.

Zuzana answered 1/7, 2021 at 8:45 Comment(0)
K
2

GitHub is removing username password authentication

An alternative approach to what others have mentioned:

You can install and configure GitHub CLI. It is much better to set up using OAuth. There isn't any need to manually remove the credentials from the keychain.

On macOS with Homebrew (brew), the installation is even simpler:

Run brew install gh and follow the following:

  1. What account do you want to log into? GitHub.com, choose GitHub
  2. What is your preferred protocol for Git operations? Choose HTTPS
  3. Authenticate Git with your GitHub credentials? Choose YES
  4. How would you like to authenticate GitHub CLI? Choose Login with a web browser
  5. Copy the code shown in terminal -> B7C1-8E67
  6. Press Enter to open github.com in your browser
  7. Authenticate using the browser

Done.

Start using Git commands as you usually do.

Kiethkiev answered 30/6, 2021 at 10:10 Comment(0)
S
2

The following steps worked perfectly fine for me

Steps to follow:

  • Generate an access token from GitHub, SettingsDeveloper SettingsPersonal access tokensGenerate new token

  • Save the token - as it will be available there for once only

  • Search for the .git-credential file in the system

  • Use the access token instead of the password in that file after the username.

Sheya answered 30/6, 2021 at 10:14 Comment(0)
I
2

There is also a very neat script that is helpful to convert HTTPS cloned Git repositories to use ssh protocol without removing and cloning the Git repository:

Convert HTTPS GitHub clones to use SSH

Incompetent answered 30/6, 2021 at 17:53 Comment(1)
I didn't have luck with the first script, but this one in the comments worked perfectly: gist.github.com/m14t/3056747#gistcomment-3468753Friede
A
1

If you're using the HTTPS version instead of SSH one then this error will come because GitHub is removing the HTTPS method to maintain repositories.

  1. Generate an SSH key if you haven't by ssh-keygen and keep on hitting Enter till ends
  2. cat ~/.ssh/id_rsa.pub - copy the result
  3. Visit https://github.com/settings/keys
  4. Press New SSH Key and paste the key in the textbox. The title can be anything you want
  5. cd <into your project's directory>
  6. git remote set-url origin [email protected]:<username-here>/<repository-name-here>.git

And you're good to go!

Apterygial answered 30/6, 2021 at 10:12 Comment(0)
S
1

You can generate your PAT (personal access token) via your GitHub dashboard.

  • Step 1: Log in to your GitHub account.

  • Step 2: In the upper-right corner of any page, click your profile photo, then click Settings.

  • Step 3: In the left sidebar, click Developer settings.

  • Step 4: In the left sidebar, click Personal access tokens.

  • Step 5: Click Generate new token.

  • Step 6: Give your token a descriptive name.

  • Step 7: Select the scopes, or permissions. You'd like to grant this token. To use your token to access repositories from the command line, select repo.

  • Step 8: Click Generate token.

Copy your token to a safe location as once you get out of that page you will not be able to retrieve it, unless you create a new one.

Seamaid answered 30/6, 2021 at 10:53 Comment(0)
A
1

You don't need to remove the remote. Add a new one and then pull (as suggested by the accepted answer).

The simplest solution that worked for me (on Linux) was to use gh auto login and follow the CLI instructions. No further steps were required.

If you don't have gh, install it following this link, depending on your OS.

Arenaceous answered 30/6, 2021 at 18:18 Comment(1)
The best Way to fix the error is Go to the project directory, and open the ."git" the open the "config" file and remove the following lines: -------- [credential] helper = store ---------- Now try git pull or push you will see enter username password screen this time enter github token instead of password.Urana
E
1

If you don't want to store your token in plain text (by modifying the remote repo's URL), you can do this:

  1. Generate a new token by following the official link
  2. Make sure you copy the token by clicking on the following button. If you double click on the text and copy it, it will add an extra space and you'll keep getting the same error (even though you're not using your password anymore, but the token)

enter image description here

Euryale answered 30/6, 2021 at 18:52 Comment(0)
I
0

Fast hot fix

Go to Personal access tokens and regenerate the last token:

Enter image description here

Inhabited answered 30/6, 2021 at 10:10 Comment(0)
A
-6

I faced this problem this afternoon and solved it by replacing my GitHub password on my computer as described in reference 3 with generated token from reference 2.

  • Reference 1: See Token authentication requirements for API and Git operations. The password is not supported anymore.

  • Reference 2: So you should generate a token with this tutorial and use it to replace your password as a credential.

  • Reference 3: If you are not prompted for your username and password, your credentials may be cached on your computer. You can update your credentials in the Keychain to replace your old password with the token as described in this tutorial.

Ardis answered 30/6, 2021 at 9:44 Comment(1)
Use SSH with RSA keys. ssh-keygen -t rsa -b 4096 -C "github_account_email" . This will generate two RSA keys one with a .pub extension put it in github as this is the public token and keep the private token in your local machine and from now whenever you push you will use ssh in place of going through https connectionObovoid

© 2022 - 2024 — McMap. All rights reserved.