netBeans team development
my friend and I recently switched to JAVA from C# tired of visual fools !!! and looking forward to jump to linux tired of foolos 7
this is our development method on c#
1. System analyzing (ER, CLASS, sequence diagrams )
2. db design
3. Application design using C#
once the analyzing part is done we will share the work for example if theres two forms one for him and 1 for me we will develope the forms(GUI), business classes , db classes individual then at last since we both shared the same database these two forms can be easily merged in to one project !
Are there any way to do the same in netbeans ? :rolleyes:
Re: netBeans team development
Would you not solve this using some sort of code repository to share the full code base with each other so you both can develop on it at the same time?
// Json
Re: netBeans team development
Quote:
Originally Posted by
Json
Would you not solve this using some sort of code repository to share the full code base with each other so you both can develop on it at the same time?
// Json
:confused: I am little confused what a repository ?
Re: netBeans team development
Using a code repository such as CVS, SVN, Mercurial, Git etc you can easily work on the same code at the same time.
My preference at the moment is SVN or Subversion as its called. What happens is you write your code and then commit it to the repository, then the other developer(s) can synchronize against the repository and update their code.
Have a look at the following:
subversion.tigris.org
Mercurial SCM
CVS - Open Source Version Control
Git - Fast Version Control System
There are probably more Source Control Management systems but that should give you a good start.
// Json