John C
John C

Reputation: 631

TFS command line to get list of files checked in yesterday

I'm looking for a simple way to get a list of files that were checked in on a certain day. Is there a command line I can use? I don't want changesets just the file names.

Upvotes: 2

Views: 3635

Answers (2)

Crypth
Crypth

Reputation: 1652

A bit late, but for others asking the same question.

Open a Visual Studio Command Prompt (2010) and use the command:

tf history "local path" /version:D2011-03-29 /recursive /noprompt

Replace the date with the date you wan't information about and localpath to the local folder you bound to, you WILL get the changeset number, but also all items changes. It's also possible to use a collection and remote path instead of local path.

Naturally you can discard noprompt and login and put in that information in a prompt.

More information about the TFS 2010 commandline: http://msdn.microsoft.com/en-us/library/yxtbh4yh.aspx

Upvotes: 9

Afshar
Afshar

Reputation: 11543

Use tf command line. It may do what ever you want.

Upvotes: -4

Related Questions