Github Desktop is installed and running. I have downloaded Git LFS and am trying to sync my repository and large file to the Gitlab server. However, I am getting the following error and am unsure how to proceed.
Alexanders-MBP:large-repo alexander$ git commit -m "add simplified_2011.geojson"
[master (root-commit) af76f48] add simplified_2011.geojson
2 files changed, 1 insertion(+)
create mode 100644 .gitattributes
create mode 100644 simplified_2011.geojson
Alexanders-MBP:large-repo alexander$ git lfs ls-files
f93b176e1d * simplified_2011.geojson
Alexanders-MBP:large-repo alexander$ git push origin master
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
It seems I have somehow skipped the following step
git clone git@gitlab.example.com:group/project.git
which is provided in the setup instructions
But when I try this, it also fails...
Alexanders-MBP:large-repo alexander$ git clone git@gitlab.example.com:group/project.git
Cloning into 'project'...
ssh: Could not resolve hostname gitlab.example.com: nodename nor servname provided, or not known
fatal: Could not read from remote repository.
How can I fix this?