Application: I have code on my development machine that is under git. I would like to be able to send this code to my production machine when I'm ready. One way is to have a repository, say on github or bitbucket, and push from my devel machine and then pull from my prod machine. But sometimes the code is very specific and I'm not sharing it publicly. And, this is a kind of cumbersome two step process. Can we automate this process?
Solution (From discussions here and here):
The basic idea is to set up a git repository in the production machine (wm.git) and indicate that as a remote. When you push, wm.git gets updated with the code that you push. The magic happens in the hook/post-receive script which gets executed on the production machine after a push, so you do not have to manually checkout the latest push.
Solution (From discussions here and here):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On production machine | |
--------------------- | |
mkdir wm.git | |
mkdir wm | |
cd wm.git | |
git init --bare | |
create a file: hooks/post-recieve | |
--------------------------------- | |
#!/bin/sh | |
GIT_WORK_TREE=/home/kghose/Research/wm git checkout -f | |
chmod +x hooks/post-receive | |
On devel machine under the repository | |
------------------------------------- | |
git remote add production ssh://kghose@172.17.146.192/home/kghose/Research/wm.git | |
git push production master:master |
Comments
Post a Comment