1、在本地建立ssh key
$ ssh-keygen -t rsa -c "[email protected]"
在使用者主目錄(c盤中「使用者」下會生成.ss**件,裡面有id_rsa和id_rsa.pub兩個檔案,id_rsa是私鑰,不可告訴別人,id_rsa.pub是公鑰,複製
2、登入你的github賬戶,account settings ——> ssh key——>new ssh key
title:隨便取
key:貼上id_rsa.pub中內容
3、驗證是否成功,在git bash下輸入:
$ ssh -t [email protected]
注意:
一定要手寫「yes"
如何將本地git與github建立連線
將git與github聯絡起來,註冊github 查詢本地的ssh秘鑰,git裡面輸入ssh keygen 找到路徑後進入找到id rsa.pub 複製 回到github 右上角個人資訊 setting 左側ssh and gpg key 填寫ssh keys 1 檢查git與github是否已連線...
如何將本地專案推送到Github
tip 在本地要安裝好git,官網 乙個學習git的好地方 步驟 1.建立乙個目錄 mkdir test 2.將當前目錄變為git管理倉庫 git init 3.將檔案新增到版本庫,這裡將目錄下的所有檔案都新增進去了 git add 4.告訴git將檔案提交到倉庫 git commit m firs...
如何將本地檔案上傳到github
1 git init 1 2git add 或者下面一種 git add readme.md 1 2 1 git remote add origin git github.com foremanwang letao.git 最後面的位址需要填寫你自己github的專案位址 1 git push u ...