更改 MSYS 中的时区
如果我只安装了“date”命令,如何更改 Windows 的 MSYS+MinGW 上的时区?这里没有“tzconfig”或“tzselect”。
当我尝试 $date --set="Apr 01 23:08 UTC+04:00" 我收到 19:08 GMT+0 结果。
这对我来说非常重要,因为“make”命令总是会给我有关将来修改的文件的错误。
how can I change timezone on MSYS+MinGW for Windows if I have only "date" command installed? There are no "tzconfig" or "tzselect" here.
When I try $date --set="Apr 01 23:08 UTC+04:00"
I receive 19:08 GMT+0 result.
This is very important for me because "make" command always gives me errors about files modified in future.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我有同样的问题。我的时区是 CET (GMT+1)。
我通过设置环境变量 TZ 解决了这个问题,如下所示:
在设置变量之前,我有:
dos 提示符)
(msys shell)
设置 TZ=CET-1CEST 后,它变成:
(dos 提示符)
(msys shell)
( 变量是
请注意,第一个和第三个字段仅用于显示日期字符串。如果您愿意,您也可以将其设置为 FOO 和 BAR,这是进行实际时间修改的第二个(也可以是第四个)字段。
该参数可以使用更多字段来定义 DST 开始和结束的时间。如果您想了解更多相关信息,请参阅此页面。
I had the same issue. My timezone is CET (GMT+1).
I have fixed this by setting environment variable TZ, like so:
Before setting the variable I had:
(dos prompt)
(msys shell)
After setting TZ=CET-1CEST it becomes:
(dos prompt)
(msys shell)
The fields in this variable are
Note that the first and third field are just used to display in the date string. You can just as well set it to FOO and BAR if you like, it's the second (and optionally fourth) field that do the actual time modification.
The parameter can take even more fields to define when DST starts and ends. If you like to read more about it, see this page.
这是复制&从我的电脑粘贴。启动 Windows cmd.exe 提示符 - 然后:
然后切换到 MSYS bash shell:
注意时间已更改。这也适用于使用控制面板。
This is copy & pasted from my PC. Start a Windows cmd.exe prompt - and then:
Then switch to an MSYS bash shell:
Notice the time has changed. This also works using Control Panel.
我遇到了同样的时区问题。我最好的办法是使用: date --date="4 小时前" ,其中 -4h 是我的时区...它对我来说可以为我的东西添加时间戳,但我不确定它是否会有任何帮助“制作”...
I ran into the same timezone problem. My best shot was to use : date --date="4 hours ago" , where -4h is my timezone... It worked for me to time-stamp my stuff but I'm not sure it's gonna be of any help for "make"...
作为记录,除了 Geert 的精彩回答之外,这是我在法国生活的 ~/.bash_profile 中添加的内容:
而且效果很好。
For the record, in addition to the great answer from Geert, Here is what I added to my ~/.bash_profile, living in France :
And it works great.