Reputation: 165
How can I sync code between my pc and my laptop. I'm using NetBeans for developing most of my projects. Now, I upload .zip ( or use dropbox ), but it is so annoying always to make a new project in NetBeans and add the source. Can't I just save the project on my PC and the project automatically synchronise to my laptop?
Upvotes: 2
Views: 2369
Reputation: 2483
It's time for you to use Git or SubVersioN or CVS, and possibly Maven.
All these versioning systems and project management system (Maven) are supported by NetBeans IDE.
Upvotes: 1
Reputation: 76908
Ideally you want to use Revision (source) Control
There are plenty of free SVN services out there (see: https://stackoverflow.com/questions/59791/free-online-private-svn-repositories )
Working with SVN through netbeans is a breeze.
Upvotes: 0