1. 程式人生 > >git linux git push到碼雲

git linux git push到碼雲

https 復制 分享 strong save fill mail pan iss

  • 進入https://gitee.com/profile 查看自己的賬號和郵箱,記到記事本下來,下面會用到。
  • 打開Git輸入命令git config –global user.name “yourname”回車
    git config –global user.email“[email protected]”回車
    技術分享圖片
    $ ssh-keygen -t rsa -C “[email protected]”(請填你設置的郵箱地址)回車

接著出現:
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/your_user_directory/.ssh/id_rsa):

無視這些請繼續直接按下回車

  • 直到出現
    The key’s randomart image is:
    +—[RSA 2048]—-+
    | ==++. . |
    | . ++.o . .|
    | ..o++Oo |
    +—-[SHA256]—–+技術分享圖片
    這樣的
  • 之後打開提示的目錄下記事本打開id_rsa.pub,復制裏面內容。
  • 進入自己的賬號 https://gitee.com/profile/sshkeys 點擊 SSH公鑰
  • 技術分享圖片




  • 復制的內容粘貼到Key裏,Title可以不寫,親測。

驗證:$ ssh -T [email protected]回車 測試

註意:在生成密鑰的時候會出現 Enter passphrase (empty for no passphrase),這一步直接輸入回車 不要輸入密碼

git linux git push到碼雲