Remove existing repository association in GIT
Use command git remote -v to check which git repository the project is associated with, it will give output like below
Use command git remote remove origin , to remove the existing git remote association
Use again git remote -v , now you can see that association will be removed.
Comments
Post a Comment