Antonio Bakula
Antonio Bakula

Reputation: 20693

Other users checkouts are not visible in Source Control Explorer (TFS Express)

Other users checkouts are not visible in Source Control Explorer in Visual Studio 2012, TFS is express edition :

check outs not visible

Upvotes: 9

Views: 7152

Answers (1)

Edward Thomson
Edward Thomson

Reputation: 78703

TFS 2012 introduces a new concept called local workspaces, which differ subtly from the behavior of workspaces in previous versions of TFS (the old default behavior is now called a server workspace.)

With a local workspace, TFS behaves like an edit/merge/commit-type version control system. That is to say that files are not read-only and instead TFS will scan your filesystem to determine what has been changed. You no longer need to check files out from the server and, in fact, the server does not know what you have checked out.

For this reason, you will not be able to see that the other user has checked out the file - this information exists only in his or her local workspace.

If this other user was using a traditional server workspace, the server would have this information and would present it to you.

Upvotes: 15

Related Questions