remote: Repository not found. fatal: repository 'https://github.com/***/***.git/' not found

通过命令添加新repository到git hub在执行最后一步命令(如下所示)的时候报错

git push -u origin master

error:
remote: Repository not found.
fatal: repository 'https://github.com/*****/???.git/' not found


Solution:
(1)manually add the repository "Repositrory Name" on https://github.com/new
(2) run command "git push -u origin master" again.

原文地址:https://www.cnblogs.com/adandelion/p/10595265.html