0

If I want to clone my repo with SourceTree I always get error "path is incorrect"?

Any idea: my gitlab path: git@gitlab.com:danielmauch/myapp.git enter image description here

user2881954
  • 147
  • 2
  • 10

2 Answers2

0

You have to use the URL which is listed on your project homepage.

Most probable it is: https://gitlab.com/danielmauch/myapp.git

Kai
  • 38,985
  • 14
  • 88
  • 103
0

You can use sourcetree with a repo hosted on gitlab.

First, You will need to clone the repo to local in cli. eg:

git clone https://username:passsword@gitlab.com/exiang/midian.git midian

Once completed, open sourcetree GUI, Click "+ New Repository", then "Add existing local repo" and select your local folder (in this case: "midian")

enter image description here

exiang
  • 559
  • 2
  • 14