Samarth Agarwal
Samarth Agarwal

Reputation: 2134

How to work simultaneously with 2-3 users on the same project?

I have a team of 3 developers and I want that we should be able to work on the project from our own homes, at any time (or at the same time) and make changes to the project. Till now, we have to mail each other all the updates versions to keep in sync. We are developing the project in Visual Studio 2010 currently and use SQL Express 2008. I searched internet and got some idea about Team Foundation Server but it requires Windows Server. I don't want to get into this mess and I have a Win7 Pc. Please suggest me some easy solutions.

Upvotes: 1

Views: 4456

Answers (2)

DROP TABLE users
DROP TABLE users

Reputation: 1955

Version Control is what your looking for,and your right there are some complicated solutions out there. TortoiseSVN isn't too complicated but works well.

Upvotes: 0

Eric J.
Eric J.

Reputation: 150108

There are any number of low-cost (often free to open source projects) hosted source control providers out there.

Personally I use Subversion along with the AnkhSVN plugin for Visual Studio.

Mercurial and Git are also quite popular and supported within Visual Studio via plugins.

Any of those options can be setup in a few minutes (if you use a hosted solution) and will all work for a small team.

Upvotes: 5

Related Questions