2

我想将时区设置为 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
4

3 回答 3

1

将以下行添加到您的~/.tigrc文件中:

set show-date = local
于 2014-01-24T03:11:08.017 回答
0

任何时间显示似乎都是从mkdate()函数构建的,它以 5 种模式之一(、、、、、)计算日期。NODEFAULTLOCALRELATIVESHORT

因此,任何显示修改都应在该函数中编码。

于 2012-10-12T06:11:11.873 回答
0

对我有用的(tig 2.5.4)是:

将此行添加到~/.tigrc

set main-view-date-local = true
于 2021-06-21T10:16:46.170 回答