Gitlab VirtualBox git push not working Ubuntu 11.10
Created by: phil999
I was able to setup virtualbox with gitlab. The web interface works just fine and I have added my host public key and created a 'test' project. However, I am unable to push to my test repository since it asks for [email protected]'s password after making a test directory and doing a 'git init'. I have added my key and the web interface works just fine. Any ideas what could be wrong?
$ git remote add test [email protected]:test.git $ git push -u test master [email protected]'s password: ...
Here is my VagrantFile: Vagrant::Config.run do |config| config.vm.box = "gitlab" config.vm.network :hostonly, "33.33.33.10" end
Thanks for the help!