I'm not sure what is going on. But every time I try to push or pull now with git I get this message "fatal: repository 'https://....' not found". I usually use source tree with bitbucket but am receiving the same error when I try from the command line.
The reason I'm so confused is I haven't done anything that should change the repository. This repository has had hundreds of commits from me and other team members and nothing has changed since we created it. We rarely use any advance features not even branching, just pull, push, commit, and merge. Any what could have happened and how to fix it?
I've already tried removing and re-adding the origin but no luck.
git remote rm origin
2. Add repo with desired name in your github account 3.git remote add origin origin https://github.com/YOUR_USERNAME/NEW_REPO_NAME.git
4 `git push -u origin master – Overstrung