Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 256
Antonio Bakula Avatar asked Sep 27 '12 12:09

Antonio Bakula


People also ask

How do I search for a file in Source Control Explorer?

Right-Click In the File List, right-click the file you want to check in and select Source Control > Check In (for selected files) or Source Control > Project > Check In All (for all files in the project). Local Toolbar In the File List, select the file(s) you want to check in.

Where is checkout file in TFS?

Right-click on the highest level that you want to search for checked out files (like the root of the project collection) and click the Find menu –> Find by Status. Recursive, and click Status. Click Find. This will give you a list of all the files that are checked out.


1 Answers

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.

like image 146
Edward Thomson Avatar answered Oct 21 '22 22:10

Edward Thomson