1

I have laravel-vue.js framework web site project that another developer coded on digitalocean.

Also there is a git file in the framework.

I want to use git, too. However, there is another git ssh link in project.

git@gitlab.com:user/projectname.git

I created a gitlab repo but i couldn't decide what to do next.

git@gitlab.com:myuser/projectname2.git  

How can i get this project to my local and do changes on git.

Generally i use phpstorm for coding.

Thanks.

Have a Good Code
  • 409
  • 7
  • 16

1 Answers1

1

You need to change your git origin url in your repository.

Use git remote set-url origin new.git.url/here to replace old git URL with the new one.

Dhananjay Kyada
  • 1,015
  • 1
  • 6
  • 14
  • You can visit https://stackoverflow.com/questions/2432764/how-to-change-the-uri-url-for-a-remote-git-repository for more details – Dhananjay Kyada Oct 05 '19 at 10:13