I've installed GitLab on Azure according to this: http://docs.gitlab.com/ce/install/azure/index.html
And now have a new VM running on mygit.northeurope.cloudapp.azure.com, with ports 22, 80 and 443 open. I can log in to my GitLab through the link above.
Locally I've set up the following:
git config --global user.name "Me My"
git config --global user.email "me.my@i.com"
As well as ssh stuff according to https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/
I've created a project (inside a group) in my GitLab repository, but then, whatever I try, cloning or pushing existing code, over SSH or HTTP, I get the following error messages:
ssh: Could not resolve hostname gitlab-ce.blablabla.cx.internal.cloudapp.net:MyGroup/MyProject.git: Name or service not known fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
And
fatal: unable to access 'http://gitlab-ce.blablabla.cx.internal.cloudapp.net:MyGroup/MyProject.git/': Could not resolve host: gitlab-ce.blablabla.cx.internal.cloudapp.net
What could I be missing? Any help would be appreciated!