Thomas Matthews
Thomas Matthews

Reputation: 57678

Synchronizing Eclipse project on Thumbdrive with PC

I have a thumb drive (memory stick, flash drive, etc.) on which I use for my projects when I am away from my home PC. Currently I am accessing my Eclipse project directly from my thumb drive when connected to my PC.

I would like to copy my files to the PC, develop on the PC, then "synchronize" with the thumb drive (update files on the thumb drive). I also need the reverse process too: synchronize thumb drive files with files on PC.

I have looked at the FileSync plugin, but it specifically says it is one-way.

How can I synchronize my Eclipse project both directions (PC to thumb drive and thumb drive to PC) on demand (I don't need this done automagically)?

Upvotes: 1

Views: 235

Answers (2)

Riddari
Riddari

Reputation: 1773

I'm assuming you're using Windows, so how about Sync Butler? Syncs the chosen folders automatically when the flash drive is plugged in.

Upvotes: 1

Yann Ramin
Yann Ramin

Reputation: 33167

  1. Use a DVCS (git, hg), make sure to sync repositories when you're changing your work location. This will even let you work on the same file in multiple places and merge the result.
  2. Use Unison

Upvotes: 1

Related Questions