我已经成功地为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
1条答案
按热度按时间qaxu7uf21#
我更喜欢使用HTTPS路由来建立到远程存储库的连接,因为SSH有点棘手。
以下是您需要做的事情:
在
https://github.com/settings/tokens
设置个人访问令牌,当提示输入密码时,输入您的个人访问令牌。