git - 每次push到遠端函式庫都要輸入使用者名稱和密碼?
滿天的星座
滿天的星座 2017-05-02 09:50:37
0
4
628

我記得以前不用啊,是不是哪裡搞錯了?

滿天的星座
滿天的星座

全部回覆(4)
黄舟

在新增遠端庫的時候使用了https的方式。 。所以每次都要用https的方式push到遠端函式庫,速度還慢。 。

查看使用的傳輸協定:

git remote -v

重新設定成ssh的方式:

git remote rm origin
git remote add origin git@github.com:username/repository.git
git push -u origin master
漂亮男人

git config --global credential.helper store

阿神
git config --global credential.helper "store"

配置好後在 .gitconfig 檔案中可以看到

PHPzhong

因為你目前使用的是https提交方式,改為ssh方式即可。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板