-3

is given the below message fatal: repository 'url' not found

Saurabh-Saurabh:~ TestName$ git clone https://github.com/Test/TestNewApp.git
Cloning into 'TestNewApp'...
remote: Repository not found.
fatal: repository 'https://github.com/Test/TestNewApp.git/' not found
Saurabh-Saurabh:~ TestName$ 
SG iOS Developer
  • 158
  • 2
  • 10
  • 3
    Possible duplicate of [Git Clone - Repository not found](http://stackoverflow.com/questions/25947059/git-clone-repository-not-found) – Julien Lopez May 26 '16 at 08:35

2 Answers2

0

Paste the github url in the browser and check . There is no such repository.

Webdev
  • 617
  • 6
  • 24
0

The reason why you're getting this error is because of the url you have provided as an argument to git clone command. It's not a valid URL. I'm assuming that your username on github is 'test'. You need to provide a correct url to git clone command. In your test repository you'd see a download or clone button : Clone URL

You need to copy that URL and provide that to git clone as an argument.

Rohan Kumar
  • 5,427
  • 8
  • 25
  • 40