So that versions can be easily compared with nicely colored diff etc. In eclipse I can use local history and it would probably do the job, albeit it saves version with every save, so it would also save many intermediary versions.

The purpose for this is educational. I am not worried about version control, I just want to show students how we got from version A to version B so they can easily see how the code evolved. It should be something more lightweight and simpler than typical version control system interface. I also want students to take the code evolution home, without having to connect to VCS later on.

So far, I can think of version control option is cvs + cvsspam, each commit will send out nicely formatted diff in email. All they need to do is open email after email to see how code progresses.

What do you recommend for Visual Studio 2010 and .Net development?

link|improve this question
Subversion and cruisecontrol are not difficult to setup and are free. I think that they would fit your needs quite well. – competent_tech Dec 27 '11 at 1:46
@competent_tech it seems that svnspam is in a very rudimentary state. – Danijel Arsenovski Dec 27 '11 at 1:49
feedback

2 Answers

We use Subversion for source control, CruiseControl.Net for automated build of checkins, TortoiseSVN for client-side integration with Subversion, and VisualSVN for TortoiseSVN integration with visual studio.

With this collection of tools, you can generate automated emails on checkin and when the build completes. You can also use the differencing engine built into TortoiseSVN to view the version differences.

link|improve this answer
feedback

I have been happy with HG Mercurial for source control.

And with TortoiseHg for a whole bunch of windows GUI extensions.

And Diffmerge, for visualizing changes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.