Reputation: 47
Is this possible?
Me and some mates in school need to collaborate in Netbeans.
Do anyone know if this is possible?
we are not on same computer.
Upvotes: 4
Views: 7780
Reputation: 15467
See: [NetBeans 6.8 Collaborative editing](NetBeans 6.8 Collaborative editing). It states:
It looks like the Developer collaboration module was discontinued after the release of NetBeans 6.5.... at least as a stand-alone feature.
I'd also recommend having a search for "collaborative editing" as the question has been asked a number of times with slight variations.
Upvotes: 1
Reputation: 778
I believe that what you need is a revision control server, so all of you can work on the same project, while documenting the changes that are made.
For this you just need an account to a svn/cvs/(other) server.
You may want to read the Netbeans functionalities for this use case here.
You can setup a project on code.google.com or unfuddle.com, after each of the project members has a login credential you just configure your project in Netbeans:
Now all you need to do is code, and after you finish/alter an object, function, etc, you just "commit" this change to the server, which will be available to all others as soon as they "update" (It's not real-time, of course, but i don't see how it can be trully realtime, as you would never be able to execute your program/script, as others may have errors or uncompleted statements at any given moment).
Its also possible to rollback, in case a change creates problems, or to create issues and assign team members tasks (at least when using google code).
This is the way collaborative projects normally work.
Upvotes: 5