Git
文章平均质量分 55
Haou2020
代码搬运工。
展开
-
Git常用命令总结
Git常用命令总结git init 在本地新建一个repo,进入一个项目目录,执行git init,会初始化一个repo,并在当前文件夹下创建一个.git文件夹. git clone 获取一个url对应的远程Git repo, 创建一个local copy. 一般的格式是git clone [url]. clo转载 2017-08-07 21:15:43 · 251 阅读 · 0 评论 -
git "Could not read from remote repository.Please make sure you have the correct access rights."解决方案
git clone 项目时,出现Could not read from remote repository.Please make sure you have the correct access rights. 这就说明你没有添加github的SSH Key或者需要重新添加。步骤如下:1、重新在git设置一下身份的名字和邮箱 git config –global user.name “your原创 2017-11-03 10:57:08 · 4932 阅读 · 0 评论