Answers for "delete an remote in git"

46

how to remove remote origin from git repo

git remote remove origin
Posted by: Guest on July-11-2020
6

remove remote git

# The example will remove the github remote. 
# Note that the command will not delete the repository, 
# just the local reference.
git remote rm origin
Posted by: Guest on May-29-2020
0

rm remote git

git remote add origin https://github.com/dk9071091/avnikreactjs.git
git branch -M main
git push -u origin main
Posted by: Guest on June-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language