tags:

views:

355

answers:

4

One of my co-workers has resigned and was made to leave the premises before checking in all of his code to TFS. I have access to the physical files. Is there a way for me to access his workspace and check in some of the changes that are still left unchecked in? From tfs I can see which files he has checked out but no way of seeing the exact changes unless very manually.

A: 

This is probably a quick and dirty way of doing it:

  • Shelve or check-in your own work.
  • Copy the relevant files from your co-worker into your own workspace
  • Compare the files with latest in TFS

//huusom

Is there a way to check out the files after I have copied them over to my workspace so it looks like exactly what he had before he left?
Fadeproof
+2  A: 

Have your sys-admin reset the users password to a known value, login as the user on that machine and voila, you are the user...

Jack Bolding
Not an option as that would violate some sort of privacy policy - don't ask me why.
Fadeproof
A: 

You could use some diff tool like beyond compare to visualise the actual differences.

To manage others' workspaces and even checked out files it is hard to beat Team Sidekicks, which is free and provides brilliant interface for this and many other routine TFS work.

dove
+1  A: 

1) Copy the files from his machine.

2) Administratively undo his checkout.

3) Check out the files on your machine.

4) Overwrite your files with his files.

5) Your machine state should now roughly equal his; do as many comparisons as you want.

GWLlosa