Reputation: 29497
I'm starting in C++ development, but i like to use Gedit for writing the files, but like for Ruby on Rails and many other languages, are some tools and configurations for Gedit that makes develop more easy and comfortable, and another question, what is the best for C++, SVN, CVS, Git and others...? Thanks, and sorry about my english!
Upvotes: 3
Views: 8337
Reputation: 27581
For editing you can choose:
As for source control the choice is between SVN (this is right successor of CVS) and git. If you develop alone or it's not big team of developers SVN should be fine. It uses central repository to store the data.
git in contrast is distributed source control tool. I found it pretty complicated to used to.
So if you don't need "distributed" feature of git, choose SVN.
Upvotes: 0
Reputation: 3570
The two most important plugins for Gedit are "External Tools" (allows you to run make or whatever other command you want with a keystroke) and "Snippets" (avoids retyping boilerplate code). Also, have a look at http://live.gnome.org/Gedit/Plugins, you will probably find something useful.
As for version control - I would recommend git, it is faster and has more features. SVN can work OK too. Do not use CVS unless someone points a gun at your head.
Upvotes: 8
Reputation: 1430
Wow, gedit has plugins nowadays? I was about to suggest emacs/gvim or a full blown IDE like anjuta for coding cpp.
Regarding the choice of version control, I'd go with svn or git. Both are very easy to use and don't make you jump through hoops like the good old cvs.
Upvotes: 1