我記得以前不用啊,是不是哪裡搞錯了?
在新增遠端庫的時候使用了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 檔案中可以看到
因為你目前使用的是https提交方式,改為ssh方式即可。
在新增遠端庫的時候使用了https的方式。 。所以每次都要用https的方式push到遠端函式庫,速度還慢。 。
查看使用的傳輸協定:
重新設定成ssh的方式:
git config --global credential.helper store
配置好後在 .gitconfig 檔案中可以看到
因為你目前使用的是https提交方式,改為ssh方式即可。