Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best source control development tool for Windows / .NET [closed]

What are your recommendations to use as a source control, project repository for a Windows - .NET development environment (two coders, possible one using the system)?

Addition: also the team includes three developers. One Visual Basic 6.0 moving to .NET, myself in .NET, and one web developer (PHP, JavaScript, etc.)

The system I am looking for would be something that easily integrates into the IDE of Visual Studio.

like image 309
Jeff Avatar asked Jan 17 '11 17:01

Jeff


People also ask

Is Git the best source control?

Git is one of the best version control tools that is available in the present market. Provides strong support for non-linear development. Distributed repository model. Compatible with existing systems and protocols like HTTP, FTP, ssh.

What is the difference between SCM and VCS?

SCM version control is a way to manage and document changes developers make to software code. Version control system (VCS) are also known as source control management (SCM), so the terminology is interchangeable.

Which is the most used version control system?

Without a doubt, Git is the single most popular version control system in use. Not only does Git offer the strongest feature set for developers, but it also has the most reliable workflow and is supported by the most third-party platforms on the market.

What is the version control software that most developers use for Web production?

VCS are sometimes known as SCM (Source Code Management) tools or RCS (Revision Control System). One of the most popular VCS tools in use today is called Git.


2 Answers

You can use TortoiseSVN and any Visual Studio plugin for svn: AnkhSVN or VisualSVN.

EDIT:

Quite some time has passed. If I were to answer this question today, I'd strongly recommend using git. I personally use it even when working alone. I didn't try to integrate it into Visual Studio, but standalone app SourceTree serves me well. If you never used git before I'd recommend reading Pro Git book (it's free). Evening or two spent on it will pay off.

like image 140
alpha-mouse Avatar answered Oct 25 '22 13:10

alpha-mouse


Team Foundation Server is probably the most integrated into Visual Studio.

However, I personally love Kiln (which also integrates nicely into VS). This is nice for a small team, being hosted and very elegant and easy to use.

Other options include Subversion and Git. However, without knowing more requirements, it's difficult to suggest the "best" option for a small .NET team. Self-hosted vs. hosted for you is probably the largest factor in making your decision...

like image 36
Reed Copsey Avatar answered Oct 25 '22 14:10

Reed Copsey