华域联盟 Linux Linux 搭建Git服务器的方法

Linux 搭建Git服务器的方法

安装Git

yum install -y git

git --version

创建 Git 用户

sudo adduser git

// 设置密码
passwd git

导入公钥

find / -name authorized_keys

vim /root/.ssh/authorized_keys

创建Git仓库

# 切到指定目录下
sudo git init --bare server.git

# owner指定为git
sudo chown -R git:git server.git

禁用git用户Shell

在 /etc/passwd 文件里把 git:x:502:502::/home/git:/bin/bash 改为 git:x:502:502::/home/git:/usr/bin/git-shell

clone代码到本地

git clone [email protected]:/web/mazey.cn/server/server.git

注意

若 git push 的出现权限问题:

fatal: Unable to create temporary file: Permission denied
fatal: sha1 file '<stdout>' write error: Broken pipe
error: failed to push some refs to '[email protected]:/web/mazey.cn/server/server.git'

执行如下命令:

sudo chown -R git:git /web/mazey.cn/server/

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持华域联盟。

您可能感兴趣的文章:

本文由 华域联盟 原创撰写:华域联盟 » Linux 搭建Git服务器的方法

转载请保留出处和原文链接:https://www.cnhackhy.com/71731.htm

本文来自网络,不代表华域联盟立场,转载请注明出处。

作者: sterben

发表回复

联系我们

联系我们

2551209778

在线咨询: QQ交谈

邮箱: [email protected]

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部