I'm trying to clone a GitHub private repo. I've access to it
So what i do is (HTTPS)
git clone https://github.com/xxxx1/xxxx2.git
When i do that i receive:
Cloning into 'xxxx2'...
remote: Repository not found.
fatal: repository 'https://github.com/xxxx1/xxxx2.git/' not found
First thing that looks weird for me is the extra "/" at the end, but i don't think that's the problem.
The only way i can do the git clone is via GitHub Desktop App, by URL.
On git status
$ git status
On branch develop
Your branch is up to date with 'origin/develop'.
On git fetch
$ git fetch
remote: Repository not found.
fatal: repository 'https://github.com/xxxx1/xxxx2.git/' not found
So the question is, what i'm doing wrong to be unable to clone the repo trough git bash?
Thanks so much