how to change origin of a git repo code example
Example 1: how to change remote origin guit
$ git remote set-url origin git@github.com:USERNAME/REPOSITORY.git
Example 2: set origin url git
git remote add origin <git_url>
$ git remote set-url origin git@github.com:USERNAME/REPOSITORY.git
git remote add origin <git_url>