0

I want to have a list of all revisions of a member.

Also for branches.

I know how to do for subprojects, but didn't find a solution for Members

VeikkoW
  • 817
  • 7
  • 12
Peter
  • 1,629
  • 2
  • 25
  • 45

2 Answers2

2

I would go with the si rlog command, as you can change the layout quite easy.

The following example shows just the revision numbers

si rlog --format="{revision}\n" --noHeaderFormat --noTrailerFormat member

The same result gives

si viewhistory --fields=revision member

Review also the usage page for both commands.

And of course the above commands imply that you are working in the correct sandbox. Otherwise you'd need to specify the project.

VeikkoW
  • 817
  • 7
  • 12
  • The first instruction with rlog doesn't display anything but the secondone with viewHistory does. But I have no clue why. – Peter Oct 27 '14 at 09:16
0
si rlog --format="{revision}\n" --project=%Path% --noHeaderFormat --noTrailerFormat member

- this way should work

methode
  • 5,348
  • 2
  • 31
  • 42