Created
October 20, 2015 02:31
-
-
Save J3RN/39fba3d597ea33a31dd4 to your computer and use it in GitHub Desktop.
A post-update Git hook that I use to deploy my portfolio site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
GIT_REPO=$HOME/portfolio.git | |
TMP_GIT_CLONE=$HOME/tmp_portfolio | |
PUBLIC_WWW=$HOME/www | |
touch $HOME/deploy | |
git clone $GIT_REPO $TMP_GIT_CLONE | |
cp -rv $TMP_GIT_CLONE/* $PUBLIC_WWW | |
rm -rf $TMP_GIT_CLONE | |
exit |
Oh, projectname.git is a directory name and not a .git file. Okay, this makes a little more sense.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well,
../../
is just the git remote structure, and does not have the code. The code is probably accessible without cloning, but I believe it's just easier to clone it.Explanatory image:
