github配置:为命令行创建个人访问令牌

命令行或API上使用Git通过HTTPS执行Git操作时,可以创建一个个人访问令牌并用它代替密码。

In this article

A personal access token is required to authenticate to GitHub in the following situations:

As a security precaution, GitHub automatically removes personal access tokens that haven't been used in a year.

Creating a token

  1. 验证您的电子邮箱地址,(如果尚未验证)。

  2. 在任何页面的右上角,单击您的个人资料照片,然后单击设置。

    Settings icon in the user bar
  3. 在左侧边栏中,单击“开发人员设置”。

    Developer settings
  4. In the left sidebar, click Personal access tokens.

    Personal access tokens
  5. Click Generate new token.

    Generate new token button
  6. Give your token a descriptive name.

    Token description field

     

  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.

    Selecting token scopes
  8. Click Generate token.

    Generate token button
  9. Click  to copy the token to your clipboard. For security reasons, after you navigate off the page, you will not be able to see the token again.

    Newly created token

    Warning: Treat your tokens like passwords and keep them secret. When working with the API, use tokens as environment variables instead of hardcoding them into your programs.

  10. To use your token to authenticate to an organization that uses SAML SSO, authorize the token for use with a SAML single-sign-on organization.

Using a token on the command line

Once you have a token, you can enter it instead of your password when performing Git operations over HTTPS.

For example, on the command line you would enter the following:

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

Personal access tokens can only be used for HTTPS Git operations. If your repository uses an SSH remote URL, you will need to switch the remote from SSH to HTTPS.

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.

 

posted @ 2020-07-27 18:11  soldier_cnblogs  阅读(2092)  评论(0编辑  收藏  举报