Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why Why WHY doesn't TFS's get latest work consistently?

You would have thought that feature would have been tested thoroughly.

What I have to do is, get specific version, then check both overwrite writetable files + overwrite all files.

Is my local setup messed up or you do this also?

share|improve this question

11 Answers

TFS redefined what "Get Latest" does. In TFS terms, Get Latest means get the latest version of the files, but ignore the ones that the server thinks is already in your workspace. Which to me and just about everyone else on the planet is wrong.

See this link: http://blogs.microsoft.co.il/blogs/srlteam/archive/2009/04/13/how-get-latest-version-really-works.aspx

The only way to get it to do what you want is to Get Specific Version, then check both of the "Overwrite ..." boxes.

share|improve this answer
1  
that blog post is talking about something else entirely, i.e., that you don't get the latest version of a file when you check it out for edit. You simply mark that you are editing the version of the file that you currently have in your local version. Get Latest will update my local checked out copy with new files from other developers. Note that sometimes they forget to check in the project as well as the file so it doesn't appear in the solution, but the file is there nonetheless. – tvanfosson Jun 29 '10 at 14:27
@tvanfosson: I had posted the wrong link. An updated one is in there now. – Chris Lively Jun 29 '10 at 14:35
2  
This isn't correct. TFS "get latest" works exactly as advertised, as long as TFS knows about changes to the files. Get Latest only "screws up" when people go out and modify filed outside of the IDE without checking them out first. Then, TFS thinks you have the latest source on disk, and doesn't get it. – Robaticus Jun 29 '10 at 15:18
3  
@Robaticus How does tfs 'get latest' advertised really. just as chris lively said before, him and everyone on the planet understands that 'get latest' get latest version which is not what tfs would do. you dont have to edit source outside tfs to mess it up. i have 2 workstation and working interchangeably and i just cant get the source sync. getting latest version is already a hassle with tfs and i cant imagine what merging would like. – publicENEMY Jan 15 at 0:08
1  
@DanCsharpster: You might check out the power tools at visualstudiogallery.msdn.microsoft.com/… – Chris Lively Apr 9 at 20:11
show 5 more comments

TFS, like some other source control providers, such as Perforce, do this, as the system knows what the last version you successfully got was, so get latest turns into "get changes since x". If you play by its rules and actually check things out before editing them, you don't confuse matters, and "get latest" really does as it says.

As you've seen, you can force it to reassess everything, which has a much greater bandwidth usage, but behaves closer to how SourceSafe used to.

share|improve this answer

Sometimes Get specific version even checking both checkboxes won't get you the latest file. Most commonly what happens is that you've made a change to a file, and you want to undo those changes by re-getting the latest version. Well... that's what Undo pending changes is for and not the purpose of Get specific version.

If in doubt:

  • undo pending check in on the file(s) before you do 'get latest'
  • do a compare afterwards to make sure your file matches the expected version
  • run a recursive 'compare' on your whole project afterwards to see what's different
  • keep an eye on pending changes window and sometimes you may need to check 'take server version' to resolve an incompatible pending change

And this one's my favorite that I just discovered :

  • keep an eye out in the the Output window for messages such as this :

    Warning - Unable to refresh R:\TFS-PROJECTS\www.example.com\ExampleMVC\Example MVC\Example MVC.csproj because you have a pending edit.

Yes this critical message appears in the output window. No other notifications! Nothing in pending changes and no other dialog message telling you that the file you just requested explicitly was not retrieved! And yes - you resolve this by just running Undo pending changes and getting the file.

share|improve this answer

Unfortunately, there has to be one or more bugs in TFS 2008, since this problem regularly crop up on developer machines and build servers where I work as well.

I can do Get Latest, I can see in the history list of the project that there have been commits after I last did a Get Latest, I have not touched the files on disk in any way, but after the "Get Latest" function has completed, when I check the TFS tab, some of the files still says that they're not the latest version.

Obviously TFS is able to determine that I have old files locally, since the list says so. Yet, Get Latest fails to do that, get the latest version. If I do what you did, use the Get Specific version, and check the two checkboxes at the bottom of the dialog, then the files are retrieved.

We changed our build servers to always use the Get Specific version type of function instead, so this part now works, but since our build server (TeamCity) also relies on checking if there have been changes to the files in order to kick off a build, sometimes it lapses into a "nothing changed, nothing to see here, move along" mode and does nothing until we forcibly run the build configuration.

Note that I have experienced this problem on a machine that is never touched, except for get latest + build, both manually, so there's nothing tampering with the files. It's just TFS getting confused.

One time this cropped up I verified that the files on disk was indeed binary identical to the version previously retrieved, so no manual tampering had been done with the files.

Also, I fail to see how TFS can "know" whether files have changed on disk or not without actually looking at the contents. If one part of TFS can see that the files are indeed not the latest version, then the Get Latest version should absolutely be able to get the latest version. This in reference to comments to other answers here.

share|improve this answer
TFS depends on a files version number to know whether you have the "latest" version or not. That number is maintained entirely in TFS and is only updated when someone does a check in. So, when you "Get Latest", TFS checks it's database to see what the last version sent to you was. If this number is equal to the current version, then it believes you have the latest; regardless of what is actually on your local file system. The idea was to limit down network traffic. Unfortunately, the only way this model works is if all edits occur within an application that has knowledge of TFS. – Chris Lively Jun 29 '10 at 19:39
Also, I agree there is at least one bug with 2005/08's version of this. I've seen the exact issues you've described on multiple machines; which is what lead me to use Get Specific version religiously. – Chris Lively Jun 29 '10 at 19:42
In some of the cases, edits have happened entirely within Visual Studio on one machine, the other machine, which sole purpose is to do get latest + build, no local changes are being done, ever. Yet it manages to screw this up. I'm not impressed with TFS Source Control to say the least. Hopefully 2010 will have fewer of these problems. – Lasse V. Karlsen Jun 30 '10 at 6:22

"Get latest version" by default will only download the files that have changed on the server since the last time you ran "Get latest version". TFS keeps track of the files you download so it doesn't spend time downloading the same version of the files again. If you are modifying the files outside of Visual Studio, this can cause the consistency problems it sounds like you are seeing.

share|improve this answer

What's worse is that they seem to have removed the 'Get specific version' and override options from VS 2012. At the moment I still can't work out how to get my own files! Microsoft's idea to track client state on the source control server is possibly the worst idea ever had by anyone anywhere ever. Not only does it consistently fail to do what you tell it, but it also takes longer to fail to do it and took more time and effort to develop. Huge fail.

share|improve this answer
Get specific version is now located under the Advanced menu item. – Alex Jorgenson Jan 17 at 2:37

We are experiencing similar problems in our project, using 2012.

Get latest seem to work fine for getting source code, and most of other file types (resources etc...)

But unfortunately, it doesn't download locally any DLLs from our common packages folder. As many devs, we are using third party dlls quite often (no need to explain that we're not here to re invent the wheel every time), and we have to download these manually. The best part is that if the Dll comes along with say a config file, doc file or xml next to it, then these will be downloaded. Seems like TFS filters out *.dll

Anybody knows if that could be configured by any chance ?

good luck to everyone :)

share|improve this answer

It might because you are login TFS as the same user, and the workspace name (based on machine name by default) is also the same, so TFS thinks your are on the same machine and same workspace, thus you already have the latest version of the files, so it wont get them for you.

try rename your machine, and create a new workspace as a new machine.

share|improve this answer

Most of the issues I've seen with developers complaining that Get Latest doesn't do what they expect stem from the fact that they're performing a Get Latest from Solution Explorer rather than from Source Control Explorer. Solution Explorer only gets the files that are part of the solution and ignores anything that may be required by files within the solution, and therefore part of source control, whereas Source Control explorer compares your local workspace against the repository on the server to determine which files are needed.

share|improve this answer
I tried it from Team Explorer, still the same result. In my case I deleted the folder and wanted to get the latest copy again but no luck. – Nick Apr 17 at 15:09

Team Foundation Server (TFS) keeps track of its local copy in a hidden directory called $TF.When you issue the "get Latest Version", TFS looks into this folder and see weather I have the latest copy or not. If it does it will not download the latest copy. It does not matter if you have the original file or not. In fact you might have deleted the entire folder (as in my case) and TFS won't fetch the latest copy because it does not look into the actual file but the hidden directory where it records changes. The flaw with this design is, anything done outside the system will not be recorded in TFS. For example, you may go into Windows explorer, delete a folder or file and TFS wont recognize it. It will be totally blind. At least I would expect there Windows would not let you delete this file but it does!

One way to enforce the latest copy is to delete the hidden $TF folder manually. To do that, go to command prompt and navigate to the root folder where you project was checked out and issue this command

rd/s $tf                    // remove $TF folder and everything inside it

If you want to just check the hidden folder, you can do it using

dir /ah                    // display hidden files and folders

Note: If you do it, the tf will think you do not have any local copy even though you have it in files and it will sync up everything again.

Caution: Use this method at your own risk. Please do not use it on critical work.

share|improve this answer

TFS is a fairly poor source control system in general. Add to it the issue of Get Latest not always working 100%. And please don't tell me its the developers fault for confusing TFS.

I've administered Clearcase, Subversion, and lately TFS.

My favorite by FAR, is Subversion. It just works. Its simple, and get latest actually works.

TFS should be smart enough to know what has changed, regardless if the developer has done something or not.

I've also played with Git. Git is a strange beast. It's handy in certain situations, but SVN is by far a better SCM system.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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