使用公鑰訪問碼雲

  • 2019 年 10 月 10 日
  • 筆記

1.本地進入.ssh查看是否存在密鑰對:xxx和xxx.pub

命令:cd ~/.ssh

2.如果不存在,使用ssh-keygen來創建

命令:ssh-keygen -t rsa -C "[email protected]" 例如:ssh-keygen -t rsa -C "[email protected]" 註解: Enter file in which to save the key 輸入保存秘鑰的文件 直接enter即可 Enter passphrase (empty for no passphrase) 輸入密碼 直接enter即可 此時查看.ssh目錄下可看到新增的一對秘鑰id_rsa和id_rsa.pub

3.把id_rsa.pub中的公鑰複製到gitee設置-安全設置-ssh公鑰中

4.如果以前是使用https下載的程式碼需要把https切換到ssh

git remote set-url origin 倉庫ssh地址