git on server(ssh)深入剖析,github提供服务原理
Posted wangjiuwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git on server(ssh)深入剖析,github提供服务原理相关的知识,希望对你有一定的参考价值。
.安装好linux,安装好git(192.168.1.239)2.创建一个用户zph(让此用户提供git on server),密码设置为12345678
[python] view plain copy- # useradd zph
- # passwd zph
[python] view plain copy
- # su zph
- $ cd
4.创建一个远程仓库
[python] view plain copy- $ git init --bare sample.git
5.在windows下(192.168.1.5),打开git bash [python] view plain copy
- $ git clone zph@192.168.1.239:/home/zph/sample.git
- $ ssh-keygen -t rsa -C "youremail@example.com"
- $ cd /home/zph/.ssh/
- $ vi authorized_keys
9.更改authorized_keys文件的权限
[python] view plain copy
- $chmod 600 authorized_keys
[python] view plain copy
- $ ssh zph@192.168.1.239
11.重复第5步,已经不需要输入密码了
12.代码自动更新
cp /home/zph/sample.git/hooks/update.sample /home/zph/sample.git/hooks/update
13.打开update,先清空内容,然后进行编辑如下
cd /usr/share/nginx/html/sample
unset GIT_DIR
git checkout master
git pull
以上是关于git on server(ssh)深入剖析,github提供服务原理的主要内容,如果未能解决你的问题,请参考以下文章
ssh简单版git-server 1git-server权限管理
ssh简单版git-server 1自建git-server