error: cannot open .git/FETCH_HEAD: Permission denied
问题背景:
公司 gitlab 服务最近从香港迁移到国内,域名也修改啦,需要将服务器中部署的 service remote-url 更新
git remote set-url origin https://gitlab-remote-url
更新完成之后,在某次跑 service 的 CI/CD 部分时报错:
git checkout dev
Already on 'dev'
Your branch is up-to-date with 'origin/dev'.
git pull
error: cannot open .git/FETCH_HEAD: Permission denied
Makefile:23: recipe for target 'deploy-staging' failed
make: *** [deploy-staging] Error 1
Connection to xxxxxxxx closed.
ERROR: Job failed: exit code 2
原因 & 解决方案:
由于在替换远程仓库 url 使用的是 https 地址(https 开头的地址),而 CI/CD 采用的是 ssh 链接,需要将远程仓库地址更换为 ssh(git@xxx 开头的)地址,于是再次执行替换命令:
git remote set-url origin git@gitlab-remote-url
再次执行CI/CD 时还是报错:
error: cannot open .git/FETCH_HEAD: Permission denied
Makefile:23: recipe for target 'deploy-staging' failed
这就很神奇啦,按理来说这次应该是可以的但是还是执行失败,查看报错原因还是 Permission denied 于是想到是不是由于用户权限的问题导致,于是ls -l 查看文件权限发现 .git 文件夹是属于 root 用户,而我登录服务器的用户为非 root 用户,我想可能是这个问题导致,于是修改 .git 文件夹权限:
sudo chown -R test:test(用户:组) .git
再次执行 CI/CD 发现可以成功构建啦
deploy done
Job succeeded

在迁移gitlab服务并更新远程仓库URL后,遇到'error: cannot open .git/FETCH_HEAD: Permission denied'的问题。问题原因是用户权限不足。解决方案是通过'git remote set-url'命令更新地址,并用'chown'命令更改.git目录的用户权限,从而成功解决权限问题。
1631

被折叠的 条评论
为什么被折叠?



