Reputation: 5044
hey guys, i am using TFS 2010, i have uploaded content on TFS server, but i dont have any clue about how to download the content from TFS server to local system so that i can check out and check in once i have done editing
Any one know how to do that.. please reply...
i need a step for the same.
Thanks and Regards Abbas Electricwala
Upvotes: 0
Views: 845
Reputation: 350
You need to setup a local Workspace (if there isn't one already) and then map your project to a local working directory. From Step 1 of this MSDN article:
You can create a workspace mapping in one of two ways:
* Set the workspace mapping explicitly * Perform a Get operation on your team project.
To set a workspace mapping explicitly
- In Visual Studio, on the File menu, point to Source Control and then click Workspaces.
- In the Manage Workspaces dialog box, select your computer name and then click Edit.
- In the Edit Workspace dialog box, in the Working folders list, click Click here to enter a new working folder.
- Click the ellipsis (…) button, select your team project (for example MyTeamProject1), and then click OK.
- Click the local folder cell to display another ellipsis button.
- Click the ellipsis button beneath Local Folder and then browse to and select the local folder on your development computer where you want to locate your team project; for example, C:\DevProjects\MyTeamProject1.
- Click OK twice to close the Edit Workspace dialog box.
- Click OK in response to the Microsoft Visual Studio message box that informs you than one or more working folders have changed.
- Click Close to close the Manage Workspaces dialog box.
To perform a Get operation on your team project
- In Team Explorer, expand your team project node; for example, MyTeamProject1.
- Double-click Source Control beneath your team project.
- In Source Control Explorer, right-click the root folder MyTeamProject1 and then click Get Latest Version.
- In the Browse For Folder dialog box, select your local path (for example, C:\DevProjects\MyTeamProject1) and then click OK. This maps the team project root folder within TFS to a local path on your computer.
Upvotes: 1