博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gitlab hook declined错误
阅读量:6572 次
发布时间:2019-06-24

本文共 1064 字,大约阅读时间需要 3 分钟。

hot3.png

在向gitlab提交工程的时候,出现错误提示:

remote: GitLab: You are not allowed to access master!

remote: error: hook declined to update refs/heads/master
To sa_gitlab@192.168.xxx:xxx/xxx.git
! [remote rejected] master -> master (hook declined)

这个问题主要是由于git工程里的hooks/post-receive和update引起的。可以删除这两个文件;

但是问题的根源不在这,在新建工程的hooks里面的这两个文件只是ln -s 出来的软链接,关键问题是,这两个软链接链错了位置。

查看 gitlab-shell/lib/gitlab_project.rb这个创建新工程的文件,里面有

def add_project   FileUtils.mkdir_p(full_path, mode: 0770)   #cmd = "cd #{full_path} && git init --bare && #{create_hooks_cmd}"   cmd = "cd #{full_path} && git init --bare"   system(cmd) end def create_hooks_cmd   pr_hook_path = File.join(ROOT_PATH, 'hooks', 'post-receive')   up_hook_path = File.join(ROOT_PATH, 'hooks', 'update')   #2013年11月5日 
path alway add /home/repositories/ ,but what we want is a absolute path , comment it "ln -s #{pr_hook_path} #{full_path}/hooks/post-receive && ln -s #{up_hook_path} #{full_path}/hooks/update" end

把create_hooks_cmd注释了即可,但是,这样在后面如果要在网页修改hooks的话,可能还会出问题...

转载于:https://my.oschina.net/ifeixiang/blog/339407

你可能感兴趣的文章
(小蚂蚁站长吧)网站优化做好这八步你就是seo第一
查看>>
使用流的方式往页面前台输出图片
查看>>
java核心技术反射
查看>>
我的友情链接
查看>>
Maven创建新的依赖项目
查看>>
2015年10月26日作业
查看>>
LAMP,安装脚本
查看>>
面向对象题目
查看>>
Java异常总结
查看>>
DHCP
查看>>
电脑上怎样压缩图片大小
查看>>
新来的发一个帖子
查看>>
Nginx 支持webSocket 响应403
查看>>
lnmp安装
查看>>
FTP工作方式
查看>>
Linux文件和目录管理常用命令(中)
查看>>
Configure HUE to store data in MySQL
查看>>
我的友情链接
查看>>
Server2008 中AD的部署
查看>>
RabbitMQ 流控制学习
查看>>