文件名称:clermontech-workshop-git-deploy:我的 Git Workshop 的材料
文件大小:4KB
文件格式:ZIP
更新时间:2024-08-01 20:12:27
Shell
Clermont'ech Workshop Git 这个(非常短的)研讨会的目的是学习使用 Git 进行部署的各种方法。 我们将介绍: 1. 使用 Git Push/Hook 进行部署 我们需要两个单独的文件夹来模拟两个不同的服务器: mkdir {local,remote}-server 在第一个文件夹中,让我们创建一个应用程序: cd local-server mkdir app cd !$ git init echo "Hello, World" > index.html git add index.html git commit -m "Initial commit" 让我们添加一个指向production服务器的新远程: git remote add production /absolute/path/to/remote-server/www 现在,我们将配置远程服
【文件预览】:
clermontech-workshop-git-deploy-master
----README.md(7KB)
----post-receive(1KB)