(问题)git clone 项目报错 could not create work tree dir ‘xxx.xxx.xx‘: Permission denied
·
个人项目地址: SubTopH前端开发个人站
(自己开发的前端功能和UI组件,一些有趣的小功能,感兴趣的伙伴可以访问,欢迎提出更好的想法,私信沟通,网站属于静态页面)
SubTopH前端开发个人站https://subtop.gitee.io/subtoph.github.io/#/home
以上 👆 是个人前端项目,欢迎提出您的建议😊
以下是正文内容...............
git clone 项目报错 :fatal: could not create work tree dir 'SubtopH.github.io': Permission denied
报错:在执行上面命令从 git 上 clone 的时候报了错误,报这个错误的原因就是正在写入或者克隆 git 仓库的目录没有写入的权限。
-
解决办法就是先修改目录的权限然后在进行操作(执行下面指令)
//clone目录下执行
cd ../
//再执行
sudo chmod o+w dirname
- 如果有密码的可能会提醒你输入密码,然后就可以重新执行 git clone 命令了
更多推荐
已为社区贡献3条内容
所有评论(0)