how to set remote origin in git code example
Example 1: git set origin
git remote -v
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 2: git set remote
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 3: set git origin
git remote add origin [email protected]:portfolio/space.space_name.git
Example 4: set origin url git
git remote add origin <git_url>
Example 5: 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