gpt4 book ai didi

git - github上的SSH key

转载 作者:行者123 更新时间:2023-12-02 13:51:30 24 4
gpt4 key购买 nike

每当我想在存储库中提交某些内容时,我都必须输入

ssh-add ~/.ssh/my_git_key_file

有什么方法可以在我每次想提交某件事时不这样做吗?
我想在其中使用.netrc文件而不是ssh键:
machine github.com
login <login_github>
password <password_github>

最佳答案

发生这种情况是因为您的SSH守护程序未运行。您可以通过运行以下命令解决此问题:

eval `ssh-agent -s`
ssh-add ~/.ssh/my_git_key_file

然后,它不应再询问您有关SSH密码的问题。

如果要使用 .netrc文件,请使用HTTPS存储库URL:
git remote set-url origin https://github.com/owner/repo.git

关于git - github上的SSH key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33237347/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com