mercurial/help/dates.txt
branchstable
changeset 13882 0a0988bd4818
parent 9999 f91e5630ce7e
child 13887 06803dc5fc19
equal deleted inserted replaced
13865:e33ebe67657a 13882:0a0988bd4818
    21 
    21 
    22 Lastly, there is Mercurial's internal format:
    22 Lastly, there is Mercurial's internal format:
    23 
    23 
    24 - ``1165432709 0`` (Wed Dec 6 13:18:29 2006 UTC)
    24 - ``1165432709 0`` (Wed Dec 6 13:18:29 2006 UTC)
    25 
    25 
    26 This is the internal representation format for dates. unixtime is the
    26 This is the internal representation format for dates. The first number
    27 number of seconds since the epoch (1970-01-01 00:00 UTC). offset is
    27 is the number of seconds since the epoch (1970-01-01 00:00 UTC). The
    28 the offset of the local timezone, in seconds west of UTC (negative if
    28 second is the offset of the local timezone, in seconds west of UTC
    29 the timezone is east of UTC).
    29 (negative if the timezone is east of UTC).
    30 
    30 
    31 The log command also accepts date ranges:
    31 The log command also accepts date ranges:
    32 
    32 
    33 - ``<{datetime}`` - at or before a given date/time
    33 - ``<{datetime}`` - at or before a given date/time
    34 - ``>{datetime}`` - on or after a given date/time
    34 - ``>{datetime}`` - on or after a given date/time