怎样简单的clone自己github的私人项目
目前来说,github
的私人项目已经可以免费使用了一段时间,但是当你用普通的clone
方式去下载到本地的时候,会发现提示clone
失败,报错显示
remote: Repository not found. fatal: repository ‘https://github.com/github-username/github-template-name.git’ not found
正常来说,clone
的链接格式一般是
https://github.com/github-username/github-template-name.git
那么当你想要在本地clone
自己的私人项目的时候,为了私人项目的安全,就需要加上账号与密码进行验证
git clone https://github-username:github-password@github.com/github-username/github-template-name.git
在clone
的时候,在https://
后面先加上github-username:github-password
,再@
项目的链接就可以正常的把项目clone
下来,这是相对比较简单的clone
自己的私人项目的方法。
注意:github上,https方式不能直接clone私有仓库,会提示仓库不存在,ssh方式可以直接clone,那么例如:
转载:https://blog.csdn.net/kalenE992/article/details/92029294