ubuntu安装git服务器
时间: 2024-06-04 12:04:28 浏览: 138
安装 Git 服务器需要以下步骤:
1. 在 Ubuntu 上安装 Git
在终端输入以下命令:
```
sudo apt-get update
sudo apt-get install git
```
2. 创建一个 Git 用户和组
在终端输入以下命令:
```
sudo adduser --system --shell /bin/bash --gecos 'Git Version Control' --group --disabled-password --home /home/git git
```
3. 创建一个 SSH 密钥对
在终端输入以下命令:
```
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
```
将公钥(`id_rsa.pub` 文件)复制到 Git 用户的 `authorized_keys` 文件中:
```
sudo -H -u git bash -c 'mkdir /home/git/.ssh && touch /home/git/.ssh/authorized_keys && chmod 700 /home/git/.ssh && chmod 600 /home/git/.ssh/authorized_keys && cat >> /home/git/.ssh/authorized_keys' < ~/.ssh/id_rsa.pub
```
4. 创建一个 Git 仓库
在终端输入以下命令:
```
sudo mkdir /opt/git
sudo chown git:git /opt/git
sudo chmod 775 /opt/git
cd /opt/git
sudo git init --bare test.git
```
5. 克隆 Git 仓库
在终端输入以下命令:
```
git clone git@your_server_ip:/opt/git/test.git
```
阅读全文