📅  最后修改于: 2023-12-03 14:56:07.619000             🧑  作者: Mango
有时候,在使用Shell或Bash的git命令管理代码库时,我们需要手动添加一个已知的主机,比如GitHub。这样,我们就可以方便地在本地push和pull代码。
下面是一个简单的步骤来添加已知主机GitHub:
ls -al ~/.ssh
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
nano ~/.ssh/config
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa
现在你可以使用本地git与GitHub上的代码库同步了。如果你还没有将本地仓库关联到GitHub远程库,你可以使用以下命令:
git remote add origin git@github.com:username/repo.git
其中,username/repo
是你在GitHub中的Repository名称。
以上是添加已知主机GitHub的简单步骤。如果你遇到了问题,可以查看GitHub的官方文档:https://help.github.com/articles/connecting-to-github-with-ssh/。