centos进行gitosis源代码安装
时间: 2023-07-24 07:21:31 浏览: 157
gitosis install
5星 · 资源好评率100%
在 CentOS 上安装 Gitosis 的步骤与 Ubuntu 上类似,只需要稍作修改即可。下面是 CentOS 上安装 Gitosis 的步骤:
1. 安装 Git 和 Python:
```
sudo yum install git-core python
```
2. 创建一个名为 git 的用户:
```
sudo adduser --system --shell /bin/bash --comment 'git version control' --user-group --home /home/git git
```
3. 用 git 用户身份登录,并创建一个新的 SSH 密钥:
```
sudo su git
ssh-keygen -t rsa
```
4. 将公钥添加到 Gitosis 的管理员仓库:
```
sudo yum install gitosis
sudo -H -u git gitosis-init < ~/.ssh/id_rsa.pub
```
5. 将 Gitosis 管理员仓库克隆到本地:
```
git clone git@localhost:gitosis-admin.git
```
6. 编辑 gitosis.conf 文件,添加需要管理的仓库:
```
cd gitosis-admin
nano gitosis.conf
```
7. 提交并推送更改:
```
git add gitosis.conf
git commit -m "Added new repository"
git push
```
现在,你就可以使用 SSH 公钥来访问 Git 仓库了。如果需要添加或删除用户的访问权限,只需要编辑 gitosis.conf 文件并提交更改即可。
阅读全文