我剛安裝gitlab當遵循了這一官方指導價:https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md密碼提示推本地主機(gitlab)git倉庫
在同一臺服務器,我安裝的git(實驗室),我試圖做創建一個倉庫以下內容:
su git (i started by logging in with the git user) cd /home/git/repositories mkdir test-project cd test-project git init touch README git add README git commit -m 'first commit' git remote add origin [email protected]:root/test-project.git git push -u origin master
但是當我輸入最後一行時,會提示用戶輸入密碼[email protected]。
另外,當我輸入
ssh -T [email protected]或
ssh -T [email protected]時,我收到提示密碼。
我一直在嘗試加載可能的解決方案,寫在互聯網上但似乎沒有工作。
感謝您的幫助提前。
可能重複[GitLab需要git @ localhost密碼才能推送到回購站點](http:// stackoverflow .com/questions/11767366/gitlab-requires-gitlocalhost-password-to-a-repo) –