如何让git停止询问用户名和密码?

hrirmatl  于 2023-04-04  发布在  Git
关注(0)|答案(1)|浏览(137)

我已经成功地为GitHub Docs instructions设置了SSH。我还使用以下命令验证了SSH的工作情况:

ssh -T git@github.com

但是,在创建新的存储库之后;系统提示我输入已弃用的用户名/密码。
如何让Git使用已建立的SSH密钥对?
我的配置文件是这样的,我验证了它正在使用git config --list

[core]
  excludesfile = /Users/foo/.gitignore
    editor = subl -n -w
[remote "origin"]
  proxy = 
[user]
  name = foo
  email = not@my.email
[init]
  defaultBranch = main
[pull]
  rebase = false
qaxu7uf2

qaxu7uf21#

我更喜欢使用HTTPS路由来建立到远程存储库的连接,因为SSH有点棘手。
以下是您需要做的事情:
https://github.com/settings/tokens设置个人访问令牌,当提示输入密码时,输入您的个人访问令牌。

相关问题