Comment on Poll: Your preferred method for coding on a remote server?Comments−samarudge15yPush to a GIT server, we have a branch called 'live', then we run a script on the servers that pull down the deploy branch. We also have a branch called 'development' for our dev boxes−dongsheng15ySimilar here, I set up a git hook to detect commit message, if 'deploy' appears, then push the branch to live server.−jamesgeck015ygit commit -m "Fix for issue #258 (sidebar widget breaks when deployed).";-)−kkovacsOP15yI like this "remotely triggered deploy" idea :)
Comments
Push to a GIT server, we have a branch called 'live', then we run a script on the servers that pull down the deploy branch. We also have a branch called 'development' for our dev boxes
Similar here, I set up a git hook to detect commit message, if 'deploy' appears, then push the branch to live server.
git commit -m "Fix for issue #258 (sidebar widget breaks when deployed)."
;-)
I like this "remotely triggered deploy" idea :)