开发者

Basic Team foundation server questions

开发者 https://www.devze.com 2023-01-15 06:54 出处:网络
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?

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

  1. But how can I generate a list that contains the information which person checked-out cur开发者_如何转开发rently 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!


  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


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消