Automation can liberate the human hands, and more importantly, because the prescribed process to walk, but also reduce the production of many misoperation. Do not know how you usually update their own production environment code, FTP overwrite old files, server scheduled task to build the latest source, or there is more advanced practice?
I'm currently using a Git Hook to deploy my project. A git hook is a hook provided by git that can be invoked after a specific event is triggered. In fact, more generally speaking, when you set up a git hook, as long as your remote warehouse received a push, Git hook can help you execute a bash script.
Here are my simple automated deployments using Git hooks, and there may be more advanced practices that you can dig for yourself.
Initializing a remote Git repository on the server
git init
and git --bare init
The original warehouse is completely different, specific I Google, English is understood, but to translate the Chinese but do not know what adjectives to call these 2 kinds of warehouses.
Here we're going to git --bare init
initialize a remote repository by initializing
1234 |
$ CD ~$ mkdir testrepo$ cd Testrepo$ git--bare init |
Initializing a local Git repository on the server
This repository is initialized by the git init
most common local repository, its role is to pull the remote repository (in fact, next to it) the latest source code, and then compile in this warehouse, the code compiled to the WWW directory (the root directory of the Web site).
1234567891011 |
$ CD ~$ mkdir testdeploy$ cd testdeploy$ git clone ~/testrepo #从远程仓库 Clon E out source ' # # # for remote warehouse settings Hook ' bash$ cd ~/testrepo/hooks$ vim post-receive |
post-receive
The execution script inside
123456789101112 |
#!/bin/sh unset Git_dir deploypath=/home/user/testdeploywwwpath=/home/wwwroot/testdeploy cd $DeployPath git Add. -A && git Stashgit pull Origin Master # These 2 steps are all based on the actual bash scripts you add yourself to the FIS release-dompd $WwwPath # I use FIS, compile the front-end code Qrsync/home/user/qiniutools/config.json # Sync using the seven KN sync tool |
Finally, to post-receive
add executable permissions
Add a remote source to a local warehouse
This time the local warehouse is really your development machine above the local. Add a new remote source to your existing Git project, and the push code in the remote source will automatically trigger the bash script above.
12 |
$ git remote add deploy [email protected]:/home/user/testrepo$ git push deploy Master |
https://dearb.me/archive/2015-03-30/automate-deploy-your-websites-with-git-hook/
1190000003836345?_ea=386770
Automate site deployment with Git hooks