我在遠程服務器上創建了一個git repo。
我想通過netbeans訪問該回購。 我跟着無法連接到netbeans遠程服務器上的git存儲庫
team->git->clone
這是錯誤
截圖這是git倉庫的位置。
http://mobimage.co/index.php?i=b93e28
這是回購地址: http://188.226.161.12/repo.git/
我在遠程服務器上創建了一個git repo。
我想通過netbeans訪問該回購。 我跟着無法連接到netbeans遠程服務器上的git存儲庫
team->git->clone
這是錯誤
截圖這是git倉庫的位置。
http://mobimage.co/index.php?i=b93e28
這是回購地址: http://188.226.161.12/repo.git/
你有沒有設置遠程服務器來支持HTTP?
如果不是簡單地創建SSH密鑰ssh-keygen -t rsa -C "email"
並將私鑰上傳到您的遠程服務器。
現在你將能夠通過ssh克隆它。
如果您不想添加ssh密鑰,請使用https://
原型協議,它會促使您輸入tpassword。
如果你想在C:Users\username\.gitconfig
sslVerify = false[http]
上https
必須添加一些配置數據連接的git通過命令行
git config --global http.sslVerify false
你好,我想你說什麼,發生了此問題。 http://mobimage.co/index.php?i=37338f但我確信我在服務器上發送了正確的ssh密鑰。 – sudo
這個網址必須像這樣:ssh://[email protected]/repo.url必須以ssh開頭 – CodeWizard