ubuntu18.04创建git服务器

在当前用户 arctic 创建git服务器
ubuntu 18.04

服务器端:
1,安装依赖
sudo apt install git openssh-server

2,创建key文件,权限就不用改了,默认创建就是
目录 700 文件 600 权限了。
mkdir ~/.ssh
touch ~/.ssh/authorized_keys

3,创建一个空的仓库
mkdir kernel.git && cd kernel.git
git --bare init


客户端:
我用的是 window版的 git
打开 git bash
ssh-keygen -t rsa
然后一路回车就行了。
在 ~/.ssh 生成了  id_rsa (私钥)和 id_rsa.pub 公钥
把公钥的内容复制到服务器端的 ~/.ssh/authorized_keys 里面

然后就可以clone那个仓库了
$ git clone [email protected]:~/gitrepo/kernel.git


Cloning into 'kernel'...
The authenticity of host '192.168.0.163 (192.168.0.163)' can't be established.
ECDSA key fingerprint is SHA256:91qxXmXOaqCPzRQ15y1pf+e5LeM8V9UzjQRwdG9qxEc.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.0.163' (ECDSA) to the list of known hosts.
warning: You appear to have cloned an empty repository.
Checking connectivity... done.

需要注意的是,这里提示你是否继续连接,不能直接回车,因为默认是no,退出的,要输入yes
然后提示把服务器添加到 know hosts 中,可以看到多了个文件 ~/.ssh/known_hosts
这个提示已经保存下来,下次就不会提示了。

现在就可以正常的使用git了

你可能感兴趣的:(嵌入式LINUX)