Using 'git pull' vs 'git checkout -f' for website deployment
Posted
by
Michelle
on Stack Overflow
See other posts from Stack Overflow
or by Michelle
Published on 2012-10-07T09:34:00Z
Indexed on
2012/10/07
9:37 UTC
Read the original article
Hit count: 304
git
|web-deployment
I've found two common approaches to automatically deploying website updates using a bare remote repo.
The first requires that the repo is cloned into the document root of the webserver and in the post-update hook a git pull is used.
cd /srv/www/siteA/ || exit
unset GIT_DIR
git pull hub master
The second approach adds a 'detached work tree' to the bare repository. The post-receive hook uses git checkout -f to replicate the repository's HEAD into the work directory which is the webservers document root i.e.
GIT_WORK_TREE=/srv/www/siteA/ git checkout -f
The first approach has the advantage that changes made in the websites working directory can be committed and pushed back to the bare repo (however files should not be updated on the live server). The second approach has the advantage that the git directory is not within the document root but this is easily solved using htaccess.
Is one method objectively better than the other in terms of best practice? What other advantages and disadvantages am I missing?
© Stack Overflow or respective owner