I am using Tower for my source control and would like to know if there is a way to create automation for every push I make to github/bitbucket/etc it will also automatically call pull to my live box (for example my personal .com). Any suggestions? Thanks.
Asked
Active
Viewed 368 times
1 Answers
0
You could do this with a githook for the post-update event. Git hooks are shell scripts which are executed after certain actions. You could write a script which either remotely logs into the live box and does a pull or which does an additional push to the live box.

Philipp
- 67,764
- 9
- 118
- 153
-
This gives me a direction. Thanks. Could you provide a good example for post-update? – ialphan Oct 04 '12 at 17:55