Netbeans on multiple machines

View: New views
5 Messages — Rating Filter:   Alert me  

Netbeans on multiple machines

by eastsidedev :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I have a PC at work and another at home. I would appreciate any suggestions on how to keep the two machines' netbeans projects synchronized. What I've been doing is copying files, and if it's a new project, re-create the project on the other machine. There must be a better way.





Netbeans on multiple machines

by bhobiger :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Copy the whole project directory containing all files. If you have multiple projects put all projects in one directory and copy that.





Re: Netbeans on multiple machines

by Mark Fraser-16 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

 >I have a PC at work and another at home. I would appreciate any
suggestions on how to keep the two machines' netbeans projects
synchronized. What I've been doing is copying >files, and if it's a new
project, re-create the project on the other machine. There must be a
better way.


Subversion or Git.


Re: Netbeans on multiple machines

by Mark Wade-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I used CVS.  I don't remember but I believe you can checkout the whole  
project and it, the project, is created for you, though libraries had  
to be installed.  I was using three machines and kept things synced  
okay with minimal effort.

On Oct 31, 2009, at 1:23 PM, Eastside Developer wrote:

> I have a PC at work and another at home. I would appreciate any  
> suggestions on how to keep the two machines' netbeans projects  
> synchronized. What I've been doing is copying files, and if it's a  
> new project, re-create the project on the other machine. There must  
> be a better way.
>
>
>
>

Mark Wade
markwade@...




Re: Netbeans on multiple machines

by King Lung Chiu :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

> I have a PC at work and another at home. I would appreciate any suggestions on how to keep the two machines' netbeans projects synchronized. What I've been doing is copying files, and if it's a new project, re-create the project on the other machine. There must be a better way.

As others have suggested, using a version control tool like CVS,
Subversion or Git will help you maintain a central repository of your
files from which you can then checkout to make modifications.

The thing to keep in mind is that if you eg. modify the files at work,
make sure you commit the changes before going home, else when you're
back home you won't be able to checkout the latest updates from work.

cheers.