I recently updated to git v 2.14 using the Windows Installer. After that, I carried on working with my organisation's private repository as usual, adding the files as required, committing, etc. At the end of the day, when I went to push (from PowerShell), I received the following error:
> git push
remote: Repository not found.
fatal: repository 'https://github.com/<User>/<Repo>.git/' not found
Navigating to the mentioned URL showed my repository with all the commits that were previously there. The ones that I had done since the update had not been committed.
I then went to check on the Windows Command Prompt, receiving the same error message. Same thing happened on Git Bash.
Commands that act on the local repository (git commit, git add, git reset, etc.), were working fine. Other commands that require communication with the remote yield the same results. Stuff like git fetch or git clone show the error:
> git clone 'https://github.com/<User>/<Repo>.git'
Cloning into '<Repo>'...
remote: Repository not found.
fatal: repository 'https://github.com/<User>/<Repo>.git/' not found
I'm quite sure it's a problem in how my account is communicating with private repositories from the organisation, but I can't find a way to solve it.
Has anyone encountered this issue before? Any ideas?
