我希望将时区设置为tig http://jonas.nitro.dk/tig/,并且希望在所有提交中使用日语时区(+0900),即使提交者有另一个时区。
我可以设置特定的时区吗?
Actual:
Thu Oct 11 01:07:31 2012 -0700
Expect:
Thu Oct 11 17:07:31 2012 +0900发布于 2014-01-24 11:11:08
将以下行添加到~/.tigrc文件中:
set show-date = local发布于 2012-10-12 14:11:12
任何时间显示似乎都是从mkdate() function构建的,它计算one of 5 modes (NO,DEFAULT,LOCAL,RELATIVE,SHORT)中的日期。
因此,任何显示修改都应该在该函数中编码。
发布于 2021-06-21 18:16:46
对我有效的(tig 2.5.4)是:
将此行添加到~/.tigrc
set main-view-date-local = truehttps://stackoverflow.com/questions/12852197
复制相似问题