linux git ssh 無密碼登陸 免密碼登陸

在github.com上 建立了一個小項目,可是在每次push  的時候,都要輸入用戶名和密碼,很是麻煩

原因是使用了https方式 push

在termail裏邊 輸入  git remote -v 

可以看到形如一下的返回結果

origin https://github.com/yuquan0821/demo.git (fetch)

origin https://github.com/yuquan0821/demo.git (push)

下面把它換成ssh方式的。


1. git remote rm origin
2. git remote add origin [email protected]:yuquan0821/demo.git
3. git push origin 

困擾了好久好久,終於解決了。


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章