If you have an existing folder that you want to push, the instructions on GitLab are as follows cd existing_folder git init git remote add origin https://gitlab.com/username/MyProject.git git add . git commit -m "Initial commit" git push -u origin master However I was receiving the following error; error: The requested URL r...
7125 Hits