Ender Wiggin
Ender Wiggin

Reputation: 13

GitHuB repository to remote server

Is there anyway I can push changes from my Github Repository to a remote server automatically?

I would like to deploy changes in master branch in my github repository to a remote deployment server. If possible.

Upvotes: 0

Views: 462

Answers (2)

Ender Wiggin
Ender Wiggin

Reputation: 13

Okay, I might have found a solution. Capistrano might hold the answer, although my application is non ruby.

Here's a blog post I found, and I will try to implement it. Automated deployment

Upvotes: 1

James Polley
James Polley

Reputation: 8181

I think you could achieve what you want with a Git post-commit hook. whether or not this is a wise thing to be doing is another matter entirely.

Hrm. Somehow my link to http://kernel.org/pub/software/scm/git/docs/v1.3.3/hooks.html isn't showing up, but that's what you want to read.

Upvotes: 1

Related Questions