终端登录github两种方式

第一种方式

添加token,Setting->Developer Setting

终端登录github两种方式_第1张图片

第二种方式SSH

用下面命令查看远程仓库格式

git remote -v

用下面命令更改远程仓库格式

git remote set-url origin [email protected]:用户名/仓库名.git

然后用下面命令生成新的SSH秘钥

ssh-keygen -t ed25519 -C "[email protected]"

将 SSH 私钥添加到 ssh-agent 并将密码存储在密钥链中。 如果使用其他名称创建了密钥或要添加具有其他名称的现有密钥,请将命令中的 ided25519 替换为私钥文件的名称。

ssh-add --apple-use-keychain ~/.ssh/id_ed25519

最后将 SSH 公钥添加到 GitHub 上的帐户

你可能感兴趣的:(macos,github,ssh)