Mercurial - log last month changes

梦想的初衷 提交于 2019-12-05 14:01:16

You want to make use of mercurial's revsets, a very powerful language to filter the revisions listed:

hg log -r"author('YOURNAME') and date('>2015-03-01')"

or alternatively for the last 30 days:

hg log -r"author('YOURNAME') and date('-30')".

See hg help revsets and hg help dates.

EDIT: Using tortoiseHG, you can use the magnifying glass icon in the toolbar (thanks Kevin)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!