Answers for "disconnect local git repo from remote"

0

disconnect local git repo from remote

# To disconnect
git remote remove origin

# To connect to a remote repo
git remote add origin yourRemoteUrl

# Then 
git push -u origin master
Posted by: Guest on May-24-2021

Code answers related to "disconnect local git repo from remote"

Browse Popular Code Answers by Language