Unable to push/ pull after git update
I gave update my git and from then I am unable to push/ pull from my existing repositories
Its giving me 'Repository not found' error
1 Answer
7 years ago by Divya
Try delete and re-adding the remote repository url. Execute the following commands to do the same
git remote rm origin
git remote add origin <your_remote_repo_url>
7 years ago by Karthik Divi