onedevteam.com
onedevteam.com

Reputation: 4178

how to use eclipse workspace on different computers

I have 3 developer machines (office desk, office laptop and home laptop) and I would like to keep my eclipse workspace and projects on usb drive and use it on all 3 computers... is this possible and how?

Upvotes: 4

Views: 13295

Answers (4)

Tope
Tope

Reputation: 1008

Try using dropbox folders for your workspace (with their packrat feature its even better). That will keep all your files up to date :D.

Upvotes: 1

crafter
crafter

Reputation: 6297

It's possible. Change your workspace to point to your shared drive. This is easier on OS's like linux as you can mount the USB drive to a specific directory.

Or, do what I do and copy the workspace directory for specific projects from one machine to another. This was covered here : How to share eclipse configuration over different workspaces

Upvotes: 0

Sandman
Sandman

Reputation: 9692

Yes it is. Copy the workspace folder to your usb drive and open the workspace from any Eclipse installation you want to.

By the way, it may be a better idea to use a version control system. Sure, you'd have to synchronize your workspace every time you make a change in the code and commit it, but usb drives can get lost, or stolen, and I'm sure you wouldn't want to lose all of your projects if you lost your usb drive.

Upvotes: 0

krookedking
krookedking

Reputation: 2303

Though it is possible by indicating the folder on your usb to be your workspace, I'd recommend using version control if you have access to some server. This way you can work on your projects anywhere, have constant backup, and keep track of the changes.

Upvotes: 1

Related Questions