1. ホーム
  2. git

[解決済み] なぜGitにはティータイムがあるのですか?

2022-12-04 12:08:52

質問

この質問では 日付.c というファイルをGitのソースコードで見てみると、以下のような特殊な時間名の構成になっていることに気づきます。

static const struct special {
    const char *name;
    void (*fn)(struct tm *, struct tm *, int *);
} special[] = {
    { "yesterday", date_yesterday },
    { "noon", date_noon },
    { "midnight", date_midnight },
    { "tea", date_tea },
    { "PM", date_pm },
    { "AM", date_am },
    { "never", date_never },
    { "now", date_now },
    { NULL }
};

これらのほとんどの実用性は(多少)理解できますが、なぜ "tea"時間(17:00 時間と評価されます)があるのでしょうか?これは単なる イースター エッグ のようなものなのでしょうか?

どのように解決するのですか?

このコミットは、なぜそれが含まれるのかについての手がかりを与えてくれるかもしれません。 https://github.com/git/git/commit/a8aca418d6484400d6804e22717bd49ca06c28e9

最初は冗談で提案されたのだと思いますが、実際には、ユーザーが独自の時間/日付の期間を含めることができることを示すために実装されました。

On Fri, 18 Nov 2005, David Roundy wrote:
> Don't forget "high noon"!  (and perhaps "tea time"?)  :)


Done.

    [torvalds@g5 git]$ ./test-date "now" "midnight" "high noon" "tea-time"
    now -> bad -> Wed Dec 31 16:00:00 1969
    now -> Fri Nov 18 08:50:54 2005

    midnight -> bad -> Wed Dec 31 16:00:00 1969
    midnight -> Fri Nov 18 00:00:00 2005

    high noon -> bad -> Wed Dec 31 16:00:00 1969
    high noon -> Thu Nov 17 12:00:00 2005

    tea-time -> bad -> Wed Dec 31 16:00:00 1969
    tea-time -> Thu Nov 17 17:00:00 2005

Thanks for pointing out tea-time.

This is also written to easily extended to allow people to add their own
important dates like Christmas and their own birthdays.

Signed-off-by: Linus Torvalds <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>