1.安装好linux,安装好git(192.168.1.239)
2.创建一个用户zph(让此用户提供git on server),密码设置为12345678
# useradd zph <pre name="code" class="html"># passwd zph
3.切换到zph用户
# su zph
$ cd
$ git init --bare sample.git
$ git clone zph@192.168.1.239:/home/zph/sample.git
终端会让输入密码,此时输入zph用户的密码即(12345678)
6.为了让用户,不用每次都输入密码,在linux生成.ssh目录
$ ssh-keygen -t rsa -C "youremail@example.com"
$ cd /home/zph/.ssh/
$ vi authorized_keys
$chmod 600 authorized_keys
$ ssh zph@192.168.1.239
11.重复第5步,已经不需要输入密码了
12.假如不想zph作为一个账号登陆系统,可以打开/etc/passwdzph:x:1002:1002::/home/zph:/bin/bash改为zph:x:1002:1002::/home/zph:/sbin/nologin
附加:
以上就介绍了 git on serverssh深入剖析,github提供服务原理,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。