Work with Eclipse on two computers

I participate in a Java course and I work on two computers. I have a laptop for use in the classroom, and at home I often use my desktop.

I would like to know if there is a way to synchronize the code on my two computers, I would like to synchronize the code and resources in the project, so this is the same on both my computers, and possibly with a few friends.

Any ideas on the best way to do this? I have Linux VPS to work.

Thanks!

+4
source share
2 answers

Use a version control system .

GitHub is convenient and free, but you can probably find the installation for any system to your liking.

As an added bonus, you get version control!

+4
source

You can try dropbox and set the workspace on both computers to a file in the drop-down list. This is what I do between my laptop and desktop computer when I enter Uni! = D

0
source

Source: https://habr.com/ru/post/1396323/


All Articles