[email protected]/test1/crowdpersona.git
provavelmente não é uma URL de projeto válida do GitHub. É [email protected]:user/project.git
para o Git por SSH ou https://github.com/user/project.git
para o Git por HTTPS. Quando apresentado com um URI de projeto inexistente, o GitHub solicita autenticação (provavelmente para procurar repositórios privados):
$ git clone https://github.com/foo/bar.git
Cloning into 'bar'...
Username for 'https://github.com':
O comando git
não pode ler uma senha ou nome de usuário aqui presumivelmente porque nenhum TTY está alocado.
$ git clone https://github.com/foo/bar.git
Cloning into 'bar'...
Username for 'https://github.com': ^C
$ ssh localhost git clone https://github.com/foo/bar.git
Cloning into 'bar'...
fatal: could not read Username for 'https://github.com': No such device or address
A solução é geralmente usar o URI de projeto correto.