有没有办法在github中查看提交日期,日/小时精度?较旧的提交以"人类可读"格式出现,例如"2年前",而不是显示实际日期.

如果无法在github上看到实际日期,是否有更简单的解决方法git clone?
我正在使用CSS.Tooltips库来尝试获取工具提示以显示输入标记.我可以让它在ap标签上工作但不是输入标签.有任何想法吗?
这里是小提琴的链接:http://jsfiddle.net/cwlanca/BumU5/1/
HTML
<p data-tip="This is the text of the tooltip">This is a paragraph of text that has a tooltip.</p>
</br>
</br>
</br>
<input data-tip="This is the text of the tooltip" value="44"/>
Run Code Online (Sandbox Code Playgroud)
CSS
[data-tip] {
position:relative;
}
[data-tip]:before {
content:'';
/* hides the tooltip when not hovered */
display:none;
content:'';
display:none;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #1a1a1a;
position:absolute;
top:30px;
left:35px;
z-index:8;
font-size:0;
line-height:0;
width:0;
height:0;
position:absolute;
top:30px;
left:35px;
z-index:8;
font-size:0;
line-height:0; …Run Code Online (Sandbox Code Playgroud) 我的申请面临着一些奇怪的问题.我有一张图片
<img title="New (Alt+N)" alt="New (Alt+N)" src="images/icon_new.gif" tabindex="-1" id="Ax14490_image">
Run Code Online (Sandbox Code Playgroud)
发现此代码检查文件withfirebug.
这是正确显示但标题不是鼠标悬停在该图像上.在这种情况下,任何人都可以帮助我.
我正在使用firefox 4.0浏览器