2016-04-06 105 views
0

昨天我的github回購站開始出現奇怪的問題,當時突然提示用戶& passwd進行推送。 Git使用ssh進行設置,並且幾個月內沒有任何更改。'git remote'顯示的URL不同於.git/config中設置的url。

$ git remote -v 
origin https://github.com/user/repo.git (fetch) 
origin https://github.com/user/repo.git (push) 

$ cat .git/config 
/-/ 
[remote "origin"] 
    url = [email protected]:user/repo.git 
/-/ 

$ git config remote.origin.url 
[email protected]:user/repo.git 

通過遠程set-url重新設置也不會改變任何東西。 bitbucket回購沒有問題。我錯過了一些改變嗎?

+0

它看起來像所有的東西都配置了github? –

+0

在github上未找到任何相關配置。 – laur

+0

您的回購協議仍然在github中創建? –

回答

0

我的gitconfig包含一個來自我目前正在使用的項目之一的配置。一個新的房產被介紹,我不知道:

[url "https://github.com/"] 
    insteadOf = "git://github.com/" 

案件關閉。

相關問題