I use git for version control for this one mysql / php project, and I have virtual hosts configured in Apache, where the default source / main website (port 80) and another virtual host, with different ports (8081, 8082 , 8083, etc.) for each folder of the working copy of dev (so that we can view each other on the fly) ... using git (hooks?),
how can I configure it so that every time someone commits and pushes it, it writes information about the human-readable version (time stamp, committer, comment, repository, branch, etc.) into the HTML file? I hope to drop this information in the footer of each page, to make it even easier to keep track of who is working / copying, which we are currently viewing.
source share