git configure remote repository code example
Example 1: see git origin
git remote -v
Example 2: git set remote
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 3: git add origin command
# To add origin
$ git remote add origin <github repo link>
Example 4: git add remote
git remote add heroku https://git.heroku.com/arrecs.git
git remote -v
-> heroku https://git.heroku.com/arrecs.git (fetch)
-> heroku https://git.heroku.com/arrecs.git (push)
git remote remove heroku
git remote -v