栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > 服务器

Linux 搭建Git服务器的方法

服务器 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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 git@127.0.0.1:/web/mazey.cn/server/server.git

注意

若 git push 的出现权限问题:

fatal: Unable to create temporary file: Permission denied
fatal: sha1 file '' write error: Broken pipe
error: failed to push some refs to 'git@0.0.0.0:/web/mazey.cn/server/server.git'

执行如下命令:

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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/179909.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号