git setup remote code example

Example 1: git set remote

git remote set-url origin https://github.com/USERNAME/REPOSITORY.git

Example 2: github add new origin

git init .
git remote add origin <http/someURL>
git pull origin master

Example 3: git remote

git remote add origin https://github.com/xxx/xxx-new.git
git branch -M main
git push -u origin main

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

Example 5: git connect to remote repository

git init
git commit -m "[message]"
git remote add origin "github repository link"
git push -u origin master

Example 6: add remote in git

git remote add origin [email protected]:portfolio/space.space_name.git#set a new remotegit remote -v#Verify new remoteorigin  [email protected]:portfolio/space.space_name.git (fetch)origin  [email protected]:portfolio/space.space_name.git (push)