博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gitolite push fail solutions
阅读量:5757 次
发布时间:2019-06-18

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

在提交代码中遇到无法提交的问题:

现象:

yuanwei@ubuntu:~/s400_d$ ls

default.xml
yuanwei@ubuntu:~/s400_d$ git push --all

fatal: remote error: access denied or repository not exported: /s400_d.git

 
yuanwei@ubuntu:~/s400_d$ ls
default.xml
yuanwei@ubuntu:~/s400_d$ git remote -v
origin git://192.168.2.132/s400_d.git (fetch)

origin git://192.168.2.132/s400_d.git (push)

解决:

添加一行参数  

--enable=receive-pack
yuanwei@ubuntu:~/s400_d$ cat /etc/sv/git-daemon/run #!/bin/shexec 2>&1echo 'git-daemon starting.'exec chpst -ugitdaemon:gitolite \  "$(git --exec-path)"/git-daemon --verbose --reuseaddr \   --export-all --enable=receive-pack  --base-path=/home/gitolite/repositories  /home/gitolite/repositories

yuanwei@ubuntu:~/s400_d$ git push

No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as 'master'.
Everything up-to-date

转载于:https://www.cnblogs.com/yuzaipiaofei/archive/2012/07/15/4124181.html

你可能感兴趣的文章
我所了解的Libevent和SEDA架构
查看>>
Socket编程问题小记
查看>>
基于Flask-Angular的项目组网架构与部署
查看>>
一张图道尽程序员的出路
查看>>
redis 常用命令
查看>>
LVS+Keepalived高可用负载均衡集群架构
查看>>
烂泥:kvm安装windows系统蓝屏
查看>>
iPhone开发面试题--葵花宝典
查看>>
EdbMails Convert EDB to PST
查看>>
POJ 2184
查看>>
大话 程序猿 眼里的 接口
查看>>
struts2用了哪几种模式
查看>>
replace函数结合正则表达式实现转化成驼峰与转化成连接字符串的方法
查看>>
ubuntu 初学常用命令
查看>>
WCF客户端与服务端通信简单入门教程
查看>>
判断是否含有中文
查看>>
android 资源种类及使用
查看>>
Explorer程序出错
查看>>
Centos7同时运行多个Tomcat
查看>>
使用CocoaPods过程中的几个问题
查看>>