How to extract list of changed files
Hi
Is it possible to obtain a list of files that have changed between two labels or changesets? The history view does show the list of changeset, is there perhaps a way to drill down across the list of changesets?
Thanks
[242 byte] By [
Rivaaj] at [2008-2-5]
Rivaaj,
I don't believe there is a way to do it from the GUI, but the following command line command will give you what you're looking for. The command:
tf history /r $/myteamproject;37875~39000 /i /format:detailed
Will display all changes in the team project named "myteamproject" between changeset 37875 and 39000. Here is the same command using labels:
tf history /r $/myteamproject;Llabel1~Llabel2 /i /format:detailed
You can mix and match labels, changeset numbers, and dates like so:
tf history /r $/myteamproject;Llabel1~39000 /i /format:detailed
Thanks,
Justin Pinnix
SDE - Version Control Server