搜尋

首頁  >  問答  >  主體

git - 每次push到遠端函式庫都要輸入使用者名稱和密碼?

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

滿天的星座滿天的星座2790 天前638

全部回覆(4)我來回復

  • 黄舟

    黄舟2017-05-02 09:52:37

    在新增遠端庫的時候使用了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

    回覆
    0
  • 漂亮男人

    漂亮男人2017-05-02 09:52:37

    git config --global credential.helper store

    回覆
    0
  • 阿神

    阿神2017-05-02 09:52:37

    git config --global credential.helper "store"
    

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

    回覆
    0
  • PHPz

    PHPz2017-05-02 09:52:37

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

    回覆
    0
  • 取消回覆