I have a website that I host with PHPFog. PHPFog, for those who don't know, makes it very easy to deploy an app to multiple application servers with a simple git-push. I would love it if there was some way to automatically update the version number of my javascript/css files with every git-commit or git-push. Or somehow maybe just append the 'build' unix timestamp to the filename. The goal of course to queue browsers to reload the asset file instead of going with the cached version. Does anyone know of a good way to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can append a bogus query string to your CSS files - such as
The release identifier can be anything you want - perhaps a timestamp, git hashref, or tag. |
|||
|
your.css?someID), maybe you can alter a file with some variable with post-commit hook, haven't tried that yet in Git though. – Wrikken Aug 1 '11 at 21:35