Git 解決「remote: Repository not found.」錯誤

錯誤訊息:

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

如果確認git位置沒有問題,但執行pull/push還是失敗並出現此錯誤訊息

表示你當前remote的repository權限,跟你要pull/push的git位置權限不一致

解決方法

重新設定Credential

$ git credential-manager uninstall
$ git credential-manager install

之後再重新 pull/ push即可

 

補充

使用url登入 如果不想每次都輸入密碼

<方法1>

$ git config --global credential.helper store

會在你下一次請求遠端輸入帳密,並把密碼以明文的方式儲存到.git-credential檔案裡面

<方法2>

直接把帳密放進url路徑中

先申請好Token來取代密碼 (如何產生Personal access tokens? )

https://<使用者名稱>:<Token>@github.com/xxx/xxx.git/

 


人生美好~別浪費腦容量記程式碼 :- ) 

作者:CYL
出處:http://dotblogs.com.tw/cylcode
資料來源都會特別註明,有興趣都可查詢原出處,本站皆經過整理才分享,如有轉載請顯示出處及作者,感謝。