問題描述:使用git clone 項目,出現這個問題:The project you were looking for could not be found.git
緣由:gi t自動保存git密碼的功能(本身在單位電腦用了碼雲和github作了倉庫,估計起了衝突)github
解決方案一:.net
git clone http://@git.coding.net/name/p... ---- 失敗get
添加遠程地址的時候帶上用戶名及密碼便可解決,格式以下:it
git clone http://yourname:password@git.coding.net/name/project.git ---- 成功coding
解決方案二:密碼
在本身的項目路徑上加上本身的用戶名,
例如:
Git clone http://git.coding.net/name/pr... ----失敗
Git clone http://git帳戶名@git.coding.n... 而後再彈出的密碼輸入指令後面輸入密碼 ---- 成功項目
解決方案三:top
清除本地git帳戶,從新輸入用戶名密碼(最優)word
git config --system --unset credential.helper
以後再進行git操做時,彈出用戶名密碼窗口,輸入便可
有問題,請留言!