github提交需要使用token的使用说明

时间:2021-09-07
本文章向大家介绍github提交需要使用token的使用说明,主要包括github提交需要使用token的使用说明使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

问题如下:LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

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.

解决方法如下:

  1. Verify your email address, if it hasn't been verified yet.

  2. In the upper-right corner of any page, click your profile photo, then click Settings.
  3. In the left sidebar, click Developer settings.
  4. In the left sidebar, click Personal access tokens.
  5. Click Generate new token.
  6. Give your token a descriptive name.
  7. To give your token an expiration, select the Expiration drop-down menu, then click a default or use the calendar picker.
  8. 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.
  9. Click Generate token.
  10. 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.

    重点在这里  以前的密码换成生成的token即可

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

原文地址:https://www.cnblogs.com/song-T/p/15238445.html