GitHub操作
- 创建项目
- 设置webhook Settings->Webhooks->填写Payload URL 关闭 SSL verification
- 创建README文件
客户端操作:
- 下载并安装Git
- 配置Git
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]" - 初始化本地文件夹
$ git init
$ git remote add origin https://github.com/888hou/laraveltest.git
$ git push -u origin master
服务器操作:
- ssh 进服务器目录
$ cd /www/wwwroot/test
- 初始化目录
$ git init
Initialized empty Git repository in /www/wwwroot/test/.git/ - 设置origin仓库
$ git remote add origin https://github.com/888hou/laraveltest.git
- 拉取数据测试
$ git pull origin master
设置webhook命令
cd /www/wwwroot/test && git pull origin master
`