首先得在本地安裝好git,有github賬號
1.本地安裝好git;
2.桌面右鍵 git bash here 開啟git命令列;
3.ssh-keygen -t rsa -c 「nideyouxiang@***.com」 (全部按enter,後面為github所填郵箱);
4.cd ~/.ssh (如果沒有執行第三步,則不會有這個資料夾;一般在此處能找到該檔案c:\users\administrator.ssh);
5.cat id_rsa.pub 在命令列開啟這個檔案,會直接輸出金鑰;
6.複製該金鑰,開啟github ,點自己頭像 >> settings >> ssh and gpg keys >>new ssh key
7.titile(可隨便填寫,例如sshkey);key裡貼上第六步的內容,完成金鑰配置。
如何在github新增公鑰
開啟gitbash 如果沒有的話首先需要安裝git 輸入如下命令 其中的郵箱必須是你註冊github的郵箱,它是你身份的標識。輸入回車,然後按提示回車或輸入y,使用預設名稱即可 進入使用者目錄下的.ssh 目錄,下面就是生成的key檔案 開啟檔案.pub結尾的檔案,複製裡面的內容 開啟github設...
如何在mac上搭建GitHub
準備工作 a 安裝git b 註冊github賬號1,檢查是否已經存在ssh目錄 開啟終端,輸入 cd ssh 如果是第一次操作,會顯示 no such file or directory2,生成金鑰 輸入 ssh keygen 接著連續3次回車即可3,檢查生成的金鑰檔案 輸入 ls 顯示 id r...
如何在github上提交pr
git remote add upstreamgit remote vgit checkout b fix npegit add git commit m fix npe git push origin fix npe 將當前分支推送到自己的遠端倉庫 注意事項 每次pr之前,首先與遠端倉庫做 同步 ...