Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mercurial print list of commits by author in windows

Im currently using mercurial on a windows client.

Im using Tortoise HG but there doesn't seems to be any print function.

How can i get a list of commits that i can print?

And i want it by a specified user.

like image 943
Alex Sleiborg Avatar asked Oct 29 '25 14:10

Alex Sleiborg


1 Answers

hg help log + hg help revsets + hg help templating if you want to modify output

List of changesets for author X:

  • hg log -u X
  • hg log -r "user(X)"

if there are spaces in authors name use '':

  • hg log -u 'John Johnson'
like image 185
Lazy Badger Avatar answered Oct 31 '25 10:10

Lazy Badger