1. 程式人生 > >Git - remote: Repository not found

Git - remote: Repository not found

今天git 推送和拉取都提示錯誤

remote: Repository not found.
fatal: repository 'https://github.com/xxx/xxx.git/' not found

解決方法:

$ git credential-manager uninstall

$ git credential-manager install

git 驗證

git使用ssh金鑰和https兩種驗證方式:
1,執行vi .git/config 通過url引數可以判斷當前你用的是什麼方式

2,使用ssh金鑰需要生產金鑰對,然後將公鑰儲存到git 遠端伺服器

    公鑰生成嚮導:http://github.com/guides/providing-your-ssh-key。

3,https需要每次輸入密碼,免密方式:

    執行 git config --global credential.helper store ,他會在你下一次請求遠端時候,讓你最後一次輸入密碼,並把密碼以明文的方式儲存到.git-credential檔案裡面