Remove Git Origin

User
remove origin git
Assistant
To remove the `origin` remote from your Git repository, run the following command in your project directory:

git remote remove origin

You can verify it's removed by running:

git remote -v

If you see no output, it means `origin` has been successfully removed.

Let me know if you want to replace it with a new remote.

Leave a Comment

Your email address will not be published. Required fields are marked *