user415876
user415876

Reputation: 327

Basic Team foundation server questions

We use Team Foundation Server (in VS 2010)...

  1. But how can I generate a list that contains the information which person checked-out currently which file?

  2. Situation: Person "A" checked-out some files (and changed them), left the company but didnt checked-in / undo! How can Person "B" "undo" the changes of person "A"?

Thanks in advance!

Upvotes: 2

Views: 701

Answers (2)

Jehan33
Jehan33

Reputation: 3780

You can use Status Sidekicks of TFS Sidekicks tool to view all the pending changes at one place and to you can undo the changes which are checked out by other users as well.

Upvotes: 2

hyprsleepy
hyprsleepy

Reputation: 1810

  1. Go to the Visual Studio command line and do the following to get a list of items checked out:

    tf.exe status /user:PersonA

  2. If you are using TFS and allowing multiple people to checkout the same file then you don't need to undo their checkout as their changes will never be committed and therefore never harm you. However, if you just want it to look "clean" and undo their changes you can use the following command:

    tf.exe undo /workspace; /server: item

Upvotes: 3

Related Questions