I followed the instructions in this guide to the letter in order to deploy a project to a remote repo using Git. There are no errors when I do this but nothing on the remote site changes. I see this when pushing via this:
git push dreamhost master
Counting objects: 252, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (250/250), done.
Writing objects: 100% (252/252), 994.11 KiB, done.
Total 252 (delta 100), reused 0 (delta 0)
To ssh://[username]@bartow.dreamhost.com/home/[username]/[filename].git
* [new branch] master -> master
I have a post-receive hook setup as well that should run:
#!/bin/sh
git --work-tree=/home/timjaeger/[sitename] --git-dir=/home/timjaeger/[sitename].git
checkout -f
Since I am not getting any error messages it is difficult to know how to troubleshoot this - where do I begin? I am a beginner at using Git for deployment.