Skip to content

Instantly share code, notes, and snippets.

@danriti
Last active October 13, 2015 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save danriti/4176739 to your computer and use it in GitHub Desktop.
Save danriti/4176739 to your computer and use it in GitHub Desktop.
Git Deployment Post Receive

Instructions

Put your ssh key on the server:

$ ssh-copy-id username@remote-server.org

On the server, create a bare git repo:

$ mkdir website.git
$ cd website.git
$ git init --bare

On the local machine, add the server repo as a remote host:

$ git remote add production ssh://username@remote-server.org/~/git/website.git

Finally, add the post-receive script attached to this Gist.

Now you can push to your new production repo:

$ git push production master

References:

#!/bin/sh
echo 'Deploying to Production...'
GIT_WORK_TREE=/home/example/example.com git checkout -f
echo 'Success!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment