开发者

How to get the last push date or file modification date when deploying to Heroku?

开发者 https://www.devze.com 2023-03-23 22:06 出处:网络
What is the easiest way to get the latest file modification date (latest of all files, not a single one) or last push date to Heroku?

What is the easiest way to get the latest file modification date (latest of all files, not a single one) or last push date to Heroku?

I would like to put on the foote开发者_如何学运维r: "Last site update on July 28, 2011"

Working in Rails 3.

Thanks!


You can look at the output of git log

git clone -o heroku git@heroku.com:appname.git
cd appname
git log
0

精彩评论

暂无评论...
验证码 换一张
取 消