Krishnaraj
Krishnaraj

Reputation: 2420

Get files added by a user in Mercurial

In mercurial, how to get list of all files added by a particular user? Would greatly appreciate if this can be generated for a specific branch.

Upvotes: 1

Views: 61

Answers (1)

marco.m
marco.m

Reputation: 4849

List all the files added (not modified) by user eve on any branch:

hg log --rev 'user(eve) and adds("glob:**")' --template '{file_adds}\n'

List all the files added (not modified) by user eve on branch pizza:

hg log --rev 'user(eve) and adds("glob:**") and branch(pizza)' --template '{file_adds}\n'

To learn more, see hg help revsets and hg help templating. Mercurial is a fantastic tool.

Upvotes: 2

Related Questions