See “real” commit date in github (hour/day)

后端 未结 7 1609
离开以前
离开以前 2021-01-31 00:36

Is there a way to see the date of a commit in github, with day/hour precision? Older commits appear in a \"human readable\" format, such as \"2 years ago\" instead of showing th

7条回答
  •  渐次进展
    2021-01-31 01:33

    With a user stylesheet plugin (I'm using stylebot in chrome)

    time {
      font-size: 0;
    }
    time:after {
        content: attr(data-original-title);
        font-size: 14px;
    }
    

提交回复
热议问题