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

I'm using Team Foundation Server 2010 with Visual Studio 2010.

Whenever I modify a file outside of Visual Studio, TFS doesn't seem to detect the change done to the file, and thus doesn't offer me the option to check-in the file after it has been modified.

How can this be solved?

share|improve this question
3  
Subversion or Git (and maybe others) are comparing hashes of files instead of API to check in/out a file. Far more simpler, and far less risky ! – Steve B Mar 27 at 16:20
worse TFS doesn't even noticed a changed file needs to be checked in, so you can often forget it.. until your colleague checks it out and realises your code doesn't compile or work. No wonder people say TFS is "VSS on steroids" - better, but still got many of VSS's problems. – gbjbaanb Apr 23 at 18:45

6 Answers

up vote 19 down vote accepted

If you have a network connection to your server while you're working outside of Visual Studio, it's probably best to go ahead and check the file out before editing it, either using the tf command line client, or using the Windows Explorer shell integration that's available in the TFS Power Tools release. (Plus an increasing number of other tools have TFS integration that makes this automatic, but if you're just using notepad, this still needs to be a manual step.)

Of course, there are many times when you're working and you don't have a network connection available that allows you to check out the files.

If you know what files you've modified, you can just check them out from within Visual Studio, then you'll be able to check them back in.

If you don't know what files you've edited, you can detect the changes by running the tfpt online command (also part of the Power Tools release). This will locate the files that have been modified locally and check these files out from the server.

share|improve this answer

This worked for me, using the TFS Power Tools:

tfpt online /adds /deletes /diff /noprompt /recursive directory-name

(where directory-name is the path to the directory to be updated, otherwise it will detect changes throughout your entire TFS repository)

If you want to know what it would do without it actually making any changes, you can force it to do a dry run by adding the /preview switch.

share|improve this answer
Thanks for the tip @Adam Batkin. Worked like a charm and I'm now fixed up! +1 – iOnline247 Jan 23 at 20:14
1  
Beware, this command line will also include unwanted files: *.user, BIN\, obj, etc... – Steve B Mar 27 at 16:25
*1- make changes outside of Visual Studio
2- go to Visual Studio and open Source Control Explorer
3- right click on the folder > "Check Out for Edit" > "Check Out"
4- right click on the same folder > "Undo Pending Changes..." > "Undo changes" > "No to All"*

I tested this workaround on a branch and it helped me a lot. But there are only new files and new folder who has to be done manually.

I recommend to create a branch before the operation. It isolates you the time of the operation.

Note: This technique does also the files identical cleanup that TFS always marks as modified.

share|improve this answer
This should really be a comment on alga's post, not a new answer. In any case, I'd still recommend against doing this for the same reason I recommended against it when alga suggested it above. – Edward Thomson Jan 27 '12 at 18:53

Visual Sourcesafe works like this too and the way I get VSS or TFS to notice the change is by checking the file out once inside Visual Studio.

share|improve this answer

There's also another solution to get TFS to figure out the files that have changed outside of Visual Studio:

  1. Open the solution offline
  2. In Solution Explorer select the solution file and then press the Go Online button (GoOnline Button Icon)

TFS will automatically scan the solution for changes after this.

Step one can be achieved in a number of different ways. Here are some:

  • Use the GoOffline Extension - very simple and effective.
  • If you're asked for TFS credentials when opening the solution (no automatic domain auth), then don't enter the credentials. The solution will open offline and you'll login after pressing the Go Online button
  • (extreme solution) Disconnect your network cable; Open the solution; Connect the network cable.
share|improve this answer

Try this. It's some sort of workaround, but it works:

  1. make changes outside of Visual Studio
  2. go to Visual Studio and open Source Control Explorer
  3. right click on the folder > "Check Out for Edit" > "Check Out"
  4. right click on the same folder > "Undo Pending Changes..." > "Undo changes" > "No to All"

That's it. The changes are visible now.

share|improve this answer
1  
I'd really recommend against this - my biggest worry would be that I'd fat-fingering this one and accidentally undoing all my legitimate changes. In addition, you're checking out all the files which, depending on your client and server configuration, will probably take a lock on some or possible all files and could do a get latest on check out which could certainly be annoying. – Edward Thomson May 5 '11 at 15:10

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.