git命令一、创建远程git仓库1、服务器设置
安装git:
yum install git
创建专用用户:
sudo adduser git
sudo passwd git
初始化裸仓库:
# 切换到 git 用户
s
2025-06-02