📅  最后修改于: 2023-12-03 15:00:57.987000             🧑  作者: Mango
Git 访问令牌是一种用于身份验证和授权的安全凭证。Git 访问令牌可以用作 Git 命令行工具、Git GUI 工具和 Git 客户端的身份验证凭证,在使用 Git 远程操作(如克隆、拉取、推送、提交等)时,以代替用户名和密码进行身份验证。
Git 访问令牌提供了更高的安全性和可控性,与传统的用户名和密码相比,它可以更简单、更安全地进行身份验证。
要生成 Git 访问令牌,首先需要登录到 Git 托管服务提供商的网站上,例如 GitHub 或 GitLab。在登陆后,用户可以按以下步骤操作:
在使用 Git 客户端进行远程仓库操作时,需要将 Git 访问令牌配置到用户的 Git 全局配置或仓库配置中。
$ git config --global credential.helper store
$ git config --global user.email "your-email@example.com"
$ git config --global user.name "your-username"
$ git config --global credential.username "your-username"
$ git config --global credential.password "your-git-access-token"
其中 "your-git-access-token" 是在前面步骤中生成的访问令牌。
$ git config credential.username "your-username"
$ git config credential.password "your-git-access-token"