git Permission denied (publickey), on every connec

2019-03-14 02:09发布

I try to simplify my work with git, then i try to pull my repository with

git pull

i get "Permission denied (publickey), i solve this by two commands:

1. ssh-agent /bin/bash 

2. ssh-add /root/.ssh/mykey

Enter passphrase for /root/.ssh/mukey * - now i cat use "git pull"

but then i connect next time via ssh i must reenter this two commands again and again

how to make it auto init to skip this steps ?

标签: git ssh
1条回答
叼着烟拽天下
2楼-- · 2019-03-14 02:14

You should have:

  • an ssh config file specifying all the details of your ssh connection.

    cat ~/.ssh/config
    
    Host yourserver
    Hostname upstream.server.com
    User git                          # or the right user account to use on your server
    IdentityFile /root/.ssh/mykey
    
  • change the remote url

    git remote set-url origin ssh://yourserver:yourRepo.git
    
  • add the agent and ssh-add command in your .bashrc or .profile.

查看更多
登录 后发表回答