0

I'm trying to git clone https://github.com/dp32350/UshtrimeWeb.git , but it stays just so without any error message:

enter image description here

Lin Du
  • 88,126
  • 95
  • 281
  • 483
dp32350
  • 1
  • 1
  • 3
    `https://github.com/dp32350/UWeb.git` results in a 404 not found - maybe that is why? – Timothy G. Jun 16 '21 at 22:46
  • 3
    That repository is either private or it doesn't exist. – JoaoCostaIFG Jun 16 '21 at 22:48
  • 3
    Could it be the same as this push problem: https://stackoverflow.com/q/67960886/7976758 ? See also https://stackoverflow.com/questions/67931716/git-push-doesnt-do-anything-over-https#comment120072116_67931716 – phd Jun 16 '21 at 22:54

1 Answers1

0

You can get more detail with:

env GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone --verbose git clone https://github.com/dp32350/UshtrimeWeb.git

Probably one of:

  • local file permissions
  • wrong url
  • wrongly setup github credentials
Alim Özdemir
  • 2,396
  • 1
  • 24
  • 35