Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NetBeans version control for newb?

I'm a relatively new programmer and I've never used version control before. I'm working on a Java project in NetBeans and was wondering about some good version control options that are relatively easy to install and use. Not sure if it matters, but I run OSX.

like image 587
Mattk Avatar asked Sep 23 '09 02:09

Mattk


2 Answers

Subversion was an easy solution for my project constraints. The Subversion guide for NetBeans: http://www.netbeans.org/kb/docs/ide/subversion.html was especially useful in terms of walking me through both installation and basic use.

like image 63
Mattk Avatar answered Nov 15 '22 11:11

Mattk


On the menu if you go to Tools > Plugins, you can choose to install a plugin for whatever version control you're using. I've got IDE 6.7 installed, and it comes with Subversion SVN, CVS, and Mercurial.

When I setup my NB project as an SVN repository, I did it first outside of NB with the 'svn' command. Once set (it makes .svn folders everywhere) NetBeans automatically detected it and allows me to update/commit/all that stuff.

like image 41
T. Stone Avatar answered Nov 15 '22 11:11

T. Stone