-1
I am trying to download a repository that is in an organization that I am part of, so I downloaded the Github Desktop Linux version, in addition to git (both are updated). However, when I access this repository it does not appear in the Github Desktop repositories list.
I’ve tried to take the link from the repository and give git clone, try the desktop app as in the terminal, without success in both.
Obs: when I did the above step, asked to log in using username, I used my github username with the correct password and did not log in. I have also tried to download . zip and failed.
some commands already tested and their results
vitor@vitorcorrea:~$ git clone https://github.com/cooperadev/Exercicios-HTML.git
Cloning into 'Exercicios-HTML'...
Username for 'https://github.com':
gh repo clone cooperadev/Exercicios-HTML exercicios html
Usage: gh repo [OPTIONS] USER_REPO
Try "gh repo --help" for help.
Error: Got unexpected extra arguments (cooperadev/Exercicios-HTML exercicios html)
tested clone the repository of your example using the same command (git clone), passed my git username and password and successfully downloaded, using Ubuntu 20.04 lts
– Lucas Miranda
Here
gh repo clone cooperadev/Exercicios-HTML exercicios html
that partexercicios html
would not be a path to a directory?– Augusto Vasques
Creates an ssh key,
ssh-keygen
puts this key in your github, gitlab or bitbucket settings and tries to clone again using ssh. Http protocol is being discontinued.– gorn