Home > Enterprise >  Xcode & Gitlab : An unknown error occurred when cloning an existing project
Xcode & Gitlab : An unknown error occurred when cloning an existing project

Time:12-10

I have been trying to clone a project using XCode. And I keep on getting this error.

An unknown error occurred.
invalid Content-Type: text/html; charset="UTF-8" (-1)

My link looks something like this.

enter image description here

Could you tell me what causes this problem and how to fix it?

CodePudding user response:

That link looks incorrect. It should be formatted similar to one of the following:

http://<IP_ADDR>/<GROUP_NAME>/<PROJECT_NAME>.git

or

git@<IP_ADDR>:<GROUP_NAME>/<PROJECT_NAME>.git

It seems that your link could be fixed by appending ".git" to the end of the string, i.e.

http://192.123.123.123:30000/ABC/ios/my-example-app.git
  • Related