It seems that when I use a tool (such as winmerge) to update my codebase... my Visual Studio Team System (VSTS) integration with Team Foundation Server (TFS) doesn't seem to pick it up.

How do I know which files to check out and check back in? Is there something I am missing? Is this a feature that isn't part of VSTS & TFS?

link|improve this question

Perhaps you could add some more info. on what you are actually doing? – Mitch Wheat Oct 6 '08 at 13:54
feedback

3 Answers

up vote 6 down vote accepted

First, this is probably because the files have not yet been checked out. If you do that first before running your update, TFS will see those changes.

Second, you can use TFS Power Tools (available from MS) to review local repository for changes that are not recognized. If there are found differences, power toys resets the status of the file so Pending Changes window sees the change. this does not require you to check-out the files, it will do that for you if there are differences.

Pretty nifty.

Power Toys for 2008 is here: http://msdn.microsoft.com/en-us/tfs2008/bb980963.aspx

and you are looking for the "Online" command:

"Online Command - Use the online command to create pending edits on writable files that do not have pending edits."

link|improve this answer
I don't necessarily know which files need to be checked out because I am doing a mass winmerge with many files. I am basically trying to merge one branch of code into another branch of code using winmerge. Ahh TFS Power Tools! – Elijah Manor Oct 6 '08 at 14:00
check them all out but again, it doesn't matter if you check them out if you install Power Tools - it doesn't care if they are checked out or not, it simply looks for differences between your local repository and the source. – ScottCher Oct 6 '08 at 17:24
Yes, you want the TF power toys. Specifically, "tfpt online /adds /deletes . /r". – Wedge Oct 6 '08 at 23:21
When I try "tfpt online /adds /deletes . /r" it says "Unable to determine the workspace" :S – Carlos Muñoz Jun 16 '10 at 23:44
feedback

I assume you are applying changes across an entire project, outside of VS. You will have to check-out the complete project first, then apply the changes and check back in. Unmodified files will not be actually checked-in, AFAIK.

link|improve this answer
feedback

Your question sound like as if you have not installed the Team Foundation Server Client.

If you have installed the Visual Studio Team System edition you are able to connect with the Team Foundation Server. But to have the integration working you need to install the Team Foundation Server Client as well.

After having done this your Visual Studio should inform you in case of file changes and then automatically check out the files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.