本文介绍了Gitolite 3 - 设置回购描述(未授权)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我使用的是Gitolite 3.6 I'm using Gitolite 3.6$ ssh git@host infohello you, this is got@Git running gitolite3 v3.6.1-6-gdc8b590 on git 1.7.10.4[...]R W my_project[...]按照有关设置的文档回购说明 Following the documentation on setting the repo description$ ssh git@host desc my_project "Machin chouette"FATAL: you are not authorized这怎么解释? How can this be explained ?git@host $ cat ~/.gitolite.rc[...] ENABLE => [ [...] 'desc', 'cgit', ][...] 推荐答案通过阅读 desc 命令(在doc中没有看到它)I found what was missing by reading the code of the desc command (didn't see it in the doc)git@host $ nano ~/.gitolite.rc%RC = ( [...] WRITER_CAN_UPDATE_DESC => 1, [...]) 这篇关于Gitolite 3 - 设置回购描述(未授权)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-27 09:48