Solved - fatal remote origin already exists - Git

By Hardik Savani March 30, 2021 Category : Git

In this quick example, let's see fatal remote origin already exists. git. if you want to see example of github fatal remote origin already exists then you are a right place. This post will give you simple example of bitbucket git fatal remote origin already exists. this example will help you git fatal remote origin already exists.

Few days ago, i was working on my crud app and i clone old project. then i want to upload again with new github repository. but when i was trying to adding remote origin then it gives me "fatal remote origin already exists" error as bellow:

so after long search i find out the way to remote origin already exists and then add new remote origin so let's see bellow two solution:

Solution 1

git remote rm origin

git remote add origin git@github.com:username/myapp.git

Solution 2

git remote set-url origin git@github.com:username/myapp.git

I hope it can help you...

Thank you...

Tags :
Shares