Reputation: 1652
I have to develop a patch for the linux kernel (2.6) for an university course I'm attending. I have to develop this patch with a friend of mine and we need to edit the same files on our computers (2-3 PCs). So, we want to use something like a collaborative editor and/or a version control system. The problem is that we never used something like that and that we cannot release our software as open source till we take the exam. Obviously, we're using linux. I'm here to ask you suggestions in order to manage our work in the best way. Thank you
Upvotes: 0
Views: 179
Reputation:
I personally use Subversion, I pay for a host (http://versionshelf.com) which gives me the option of creating and managing Subversion or Mercurial repositories through a web interface with ease.
I've not looked into Mercurial much but it seems to be very well supported and has lots of IDE integration and GUI clients (https://www.mercurial-scm.org/wiki/OtherTools).
Upvotes: 0
Reputation: 40337
git does not require a git server. Simply having a shared network file folder is sufficient.
Upvotes: 0
Reputation: 49156
Ask your professor or university IT department what version control systems are installed on the computers. Use whatever they have installed, they're all pretty much serve the same purpose.
When I was in school the computers had CVS installed, so I set a repository for myself and team members in my home directory.
As Juha said, if you want to stay linux-y use the distributed version control system Git. I think you'll be able to use git without a central "head" repository server by pulling patches.
Upvotes: 0
Reputation: 34271
You'll definitely want to use a version control system.
Linux kernel itself is developed with Git version control system. You'll probably find tons of resources for how to use Git in kernel development.
If you are looking for more traditional version control software, the Subversion is a safe bet.
With both system you can host git or subversion on your computers, and nobody else could access it. This way you do not need to publish to code before you are ready.
There are also hosting services (for example Github) that provide hosting for vcs repositories. However, in case of github, if you want a private repository, then you need pay for it.
Upvotes: 3