1、ssh: connect to host github.com port 22: Connection refused
Host github.com
Hostname ssh.github.com
Port 443
2、解决 git 多用户提交切换问题
C:Usersfyp01> ssh-keygen -t ras -b 4096 -C "${邮箱}"
Generating public/private rsa key pair.
Enter file in which to save the key (C:Usersfyp01/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in C:Usersfyp01/.ssh/id_rsa.
Your public key has been saved in C:Usersfyp01/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:4JRe/U5MvaLkh2sCPEHUvK1RBQr9zTB8y338T77ZliE ********
The key's randomart image is:
+---[RSA 4096]----+
| .o+ ..o. |
| .o+o= .. |
| .+ o=.B.o.. |
| +.oo o+= ..o|
| .o.So. = ...|
| + .o = E .o|
| o + o .o+|
| . .o .*|
| o. +o|
+----[SHA256]-----+
在c:/Users/${用户名}/.ssh/
目录下
创建config
文件并编辑
Host github.com
Hostname ssh.github.com
Port 443
User fyupeng
IdentityFile /C/Users/fyp01/.ssh/id_rsa_fyupeng
Host github.com
Hostname ssh.github.com
Port 443
User fyupeng-rnf
IdentityFile /C/Users/fyp01/.ssh/id_rsa_rnf
后面如果你想用A用户去发布A用户仓库,那只要在config文件上保留A,使用’#
注释B的,然后在
C:Usersf${}用户名.gitconfig
文件中,更改当前用户为A,当然也可以用A发布到B用户仓库,看个人习惯。
发布的前提是A想发布的仓库已经授权了公钥,比如github
的ssh
,你可以把A的公钥授权到A仓库和B仓库,仓库肯定是可以授权多个公钥的。
[user]
name = *****
email = *****
password = ****
[credential]
helper = manager-core
原文地址:https://blog.csdn.net/F15217283411/article/details/134722504
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_38890.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。