搭建属于自己的 Git 服务器

环境:win10下VMware Ubuntu20.04虚拟机,在Ubuntu上搭建代码服务器。

【Ubuntu端】

第一步,安装git

sudo apt-get install git

第二步,创建一个git用户,用来运行git服务:

sudo adduser git

第三步,创建证书登录:

cd /home/git/
mkdir .ssh
chmod 755 .ssh
touch .ssh/authorized_keyschmod 755 .ssh/authorized_keys

收集所有需要登录的用户的公钥,就是他们自己的id_rsa.pub文件,把所有公钥导入到/home/git/.ssh/authorized_keys文件里,一行一个。

这里以本地普通用户和本地git为例:

sudo cat ~/.ssh/id_rsa.pub >> /home/git/.ssh/authorized_keys 

或远程服务器:

cat ~/.ssh/id_rsa.pub | ssh git@remote-server "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"

 

参考:

https://www.runoob.com/git/git-server.html

https://www.liaoxuefeng.com/wiki/896043488029600/899998870925664

https://blog.csdn.net/u012830148/article/details/102011813

你可能感兴趣的:(版本控制)