Basic Team foundation server questions
We use Team Foundation Server (in VS 2010)...
But how can I generate a list that contains the information which person checked-out cur开发者_如何转开发rently which file?
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!
Go to the Visual Studio command line and do the following to get a list of items checked out:
tf.exe status /user:PersonA
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
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.
精彩评论