Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the simplest way to work on a project from different computers?

I have two computers that I use for development, one at home and one at the office. I use Aptana Studio 3 on both machines and would like to be able to easily work on a single project from both computers.

What are some easy ways to transport the project between computers. Right now I am just using a USB drive to transfer the files between computers.

Also, I'm using a local apache server on one computer, and a local IIS server on the other.

like image 822
MikeJerome Avatar asked Jan 18 '23 13:01

MikeJerome


2 Answers

I think you should use something like SVN, GIT, Mercurial and so on. I suggest you this software to manage your project:

Tortoise

like image 190
Aurelio De Rosa Avatar answered Apr 28 '23 17:04

Aurelio De Rosa


You might try connecting remotely (via Remote Desktop Connection for example) from home to the office computer and in this way you will only work on the office one and there will be no need for file transfer.

Alternatively, you can setup a source control server (by using SVN for example) and commit your projects to it. This way, you will be able to work on them from multiple locations.

like image 25
Florin Dumitrescu Avatar answered Apr 28 '23 16:04

Florin Dumitrescu