SAK
SAK

Reputation: 3900

controlling versions in asp.net

How to control versioning in asp.net projects?

We are a five member team and looks to use same solution file in asp.net.

I heard of using vss or tortoise svn..

how to use visual source safe or tortoise svn tool or any other tools which has better performance for version controlling.. what are the requirements to set up version controlling.?

thank you

Upvotes: 0

Views: 93

Answers (2)

Steve Wellens
Steve Wellens

Reputation: 20620

Do some test projects and try each system before you make a decision:

Do things like:

  • Setup it up.
  • Check out a file.
  • Check in a file.
  • Do a diff on two versions of a file.
  • Rollback a file to an earlier version.

This is great work for an intern. Once you start using source control, you'll wonder how you ever managed without it.

Upvotes: 2

mtazva
mtazva

Reputation: 1015

This is a HUGE question! It sounds like you are just learning the very basics of version control. You should start by understanding the basic concepts, then choosing a tool that is relatively easy to setup and learn.

Check out these other StackOverflow posts as a starting point:

Learning Version Control, and learning it well

Learning version control with git first or via SVN?

Upvotes: 2

Related Questions