SSH key設定沒問題,之前也一直用的沒問題。
從最近的某天開始會提示:
$ git push Username for 'https://github.com':
ssh -T git@github.com
也是能正常返回GitHub用戶名的。
人生最曼妙的风景,竟是内心的淡定与从容!
你用的是https協議 而ssh -T git@github.com,明明是ssh協定
把git 位址換成ssh協定的
git remote remove origin #移除
git remote add origin git@github.com:Username/Your_Repo_Name.git #換ssh
git push --set-upstream #最後一個指令記不清了,反正就是先輸入git push,然後會有一個提示,按提示輸入就行。
你用的是https協議
而ssh -T git@github.com,明明是ssh協定
把git 位址換成ssh協定的
git remote remove origin
#移除
git remote add origin git@github.com:Username/Your_Repo_Name.git
#換ssh
git push --set-upstream
#最後一個指令記不清了,反正就是先輸入git push,然後會有一個提示,按提示輸入就行。