Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to clone a from a remote repository on Github to work on a code.

The command I am using is:

git clone https://github.com/appbrewery/Todoey-iOS13.git

And the error I am getting is:

remote: Repository not found.

fatal: repository 'https://github.com/Lev0071/Story.git/' not found

Output on Terminal

Why is git telling me about

https://github.com/Lev0071/Story.git/

Whilst Im trying to clone

https://github.com/appbrewery/Todoey-iOS13.git

How do I command my git to quit obsessing about "https://github.com/Lev0071/Story.git/" ?

Thanks


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

This issue seems to be Git tracking your profile for the repository, as your tag is '@Lev007'; as a makeshift (or permanent if preferable), try using the new GitHub CLI (macOS installation) to clone this repository, it may solve your problem!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...