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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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:
commit.
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.