fatal: .git/info/refs not valid: is this a git repository?
git remote show origin
showed that the remote repository I tried to push to wasn't correct.
After fixing that with:
git remote set-url origin [REPO-URL]
the problem was solved.
git remote show origin
showed that the remote repository I tried to push to wasn't correct.
After fixing that with:
git remote set-url origin [REPO-URL]
the problem was solved.