I'm using TortoiseHG with mercurial and I have to log my changes from last month. It has to be something like this in GIT:
git log --since="2015-03-01" -p --author='me' > C:\history_3.log
Can you tell me how can I do it (using tortoise gui or terminal)?
hg log -r "author(<your name here>) and date(>2015-03-01)" > C:\history_3.log
– Ozan