问题描述
git clone https://github.com/username/xxxx.git
在一台新的电脑上clone自己的私有仓库,出现了remote: Repository not found
的问题。(浏览器已登录github)
解决
参考:https://stackoverflow.com/questions/22755268/clone-a-private-repo-of-github-with-username-and-password
使用如下命令进行克隆
git clone https://username@github.com/username/xxxx.git
成功解决:
